Artifact 0b93991cb774eeaee6af6c3acf4ee2ac8b630717
- File
sample/helloworld.pmy
- 2010-11-27 11:46:26 - part of checkin [203e4cb208] on branch trunk - fixed automatic memoization bug (whole part of the contexts are now used as the memo key) (user: kinaba) [annotate]
print( "Hello, World" );
# Omake. How to use argv
def print_list(xs)
{
case xs when {car: x, cdr: xs}: (
print(x);
print_list(xs)
)
};
print_list(argv);