낙서장

emacs 저장

kenu허광남 2014. 2. 8. 18:47

C-x C-s

가장 일반적인 저장



emacs hello.py

#!/usr/bin/python
print("Hello World")

C-x C-s
C-x C-c

chmod +x hello.py
./hello.py
Hello World