codepad
[
create a new paste
]
login
|
about
Link:
http://codepad.org/l8zNXMR7
[
raw code
|
output
|
fork
]
Perl
,
pasted on May 5:
1
2
3
4
use
strict
;
#強迫使用者以嚴謹的方式編寫
use
warnings
;
#開啟警告功能
print
"Hello, world"
;
Output:
1
Hello, world
Create a new paste based on this one
Comments: