code test

14 Mar 2014

c codes

1
2
3
4
5
void main(int argc, char **argv)
{
	printf("hello world\n");
	return 0;
}

python codes

1
2
3
4
5
6
7
#!/usr/bin/env python
#coding:utf-8
""" python code test
"""
import sys

print 'hello world'

bash

$ echo "hello world"

© 2014 plinx