Passion/Editor

후리자님 감사

sunshout 2007. 6. 20. 23:22
후리자 님이 마드신 코드 하이라이트 기능을 사용해 봅니다.


(Language : c)
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {   
  5.     printf("hello");
  6.     return 0;
  7. }


(Language : python)
  1. import sys
  2.  
  3. def test:
  4.     print "hello"
  5.