RosettaCodeData/Task/Command-line-arguments/Fantom/command-line-arguments.fantom

8 lines
106 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class Main
{
public static Void main (Str[] args)
{
echo ("command-line args are: " + args)
}
}