1
2import six
3
4
5def command(debugger, command, result, internal_dict):
6    result.PutCString(six.u("hello world B"))
7    return None
8