// Copyright (c) 1995, Masanao Izumo function foo(a, b, c) { writeln("foo: a = ", a, ", b = ", b, ", c = ", c); } function bar(x) { writeln("bar: x = ", x); } function baz() { writeln("baz: -"); } foo(1, 2, 3); bar(4); baz(); writeln("---------- Next is funcall version."); writeln("---------- Those must be same as above results."); funcall("foo", 1, 2, 3); funcall("bar", 4); funcall("baz");