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

8 lines
106 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Main
{
public static Void main (Str[] args)
{
echo ("command-line args are: " + args)
}
}