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
© 2014 plinx
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
© 2014 plinx