Artifact da81646a4f1f810690ef868ae8294225f0880389
- File
sample/helloworld.pmy
- 2010-11-25 23:05:29 - part of checkin [5dfef32124] on branch trunk - helloworld sample and argv sample merged (user: kinaba) [annotate]
# omake. how to use argv
def print_list(xs)
{
case xs when {car: x, cdr: xs}: (
print(x);
print_list(xs)
)
};
print_list(argv);
# here is the helloworld
print( "Hello, World" );