@@ -1,1 +1,12 @@ -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); + +# here is the helloworld +print( "Hello, World" );