start new:
tmux
start new with session name:
tmux new -s myname
# CC-2193, x64 toolchain | |
# TODO | |
1. shall we still need to support x86_es | |
2. Why there is still .pyc in python-lib | |
# Prepare necessary libraries | |
* There is no third-party libraries in x64 toolchain (libssl, libcrypto ...) | |
1. Build x64 library first | |
``` | |
> @NasX86/Model/TS-X51 |
def str_reverse(str): | |
return str[::-1] | |
test_str = "this is test string" | |
print "Origin string={}, after revert={}".format(test_str, str_reverse(test_str)) | |