1# Copyright (c) 2019 Refael Ackeramnn<refack@gmail.com>. All rights reserved. 2# Use of this source code is governed by an MIT-style license. 3def DoMain(args): 4 format_str = args.pop(0) 5 return ' '.join(format_str % a for a in args) 6