@@ -1,5 +1,7 @@ -# omake. how to use argv +print( "Hello, World" ); + +# Omake. How to use argv def print_list(xs) { case xs when {car: x, cdr: xs}: ( print(x); @@ -6,7 +8,4 @@ print_list(xs) ) }; print_list(argv); - -# here is the helloworld -print( "Hello, World" );