tables_5.gm 144 B

12345678
  1. fruits = table ( "apple", "pear", Juicy = "orange" );
  2. foreach ( k and f in fruits )
  3. {
  4. print( "The value at key '", k, "' is '", f, "'" );
  5. }