Artifact Content
Not logged in

Artifact da81646a4f1f810690ef868ae8294225f0880389


     1  # omake. how to use argv
     2  def print_list(xs)
     3  {
     4  	case xs when {car: x, cdr: xs}: (
     5  		print(x);
     6  		print_list(xs)
     7  	)
     8  };
     9  print_list(argv);
    10  
    11  # here is the helloworld
    12  print( "Hello, World" );