helle

helle123

1-hello
2-world

1
2
3
4
5
struct sdshdr {
int len;// 已使用的字符串长度
int free;// 未使用的字符串长度
char buf[];// 字节数组,用于保存字符串本数据
};

1
2
3
4
5
6
7
@requires_authorization
class SomeClass:
pass

if __name__ == '__main__':
# A comment
print 'hello world'