13 foo; # Compile to "foo()" instead of croaking
14 foo $x; # Compile to "foo($x)" instead of "$x->foo"
15 foo 1; # Compile to "foo(1)" instead of croaking
16 foo 1, 2; # Compile to "foo(1, 2)" instead of croaking
18 foo->import; # Compile to "foo()->import()"
20 print foo 'wut'; # Compile to "print(foo('wut'))"
25 eval "bar"; # not defined, BOOM
26 warn 'died: ' . $@ if $@;
29 my $s = @_ ? join ',', @_ : '(nothing)';