RosettaCodeData/Task/Execute-a-system-command/Fantom/execute-a-system-command.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
88 B
Text

class Main
{
public static Void main ()
{
p := Process (["ls"])
p.run
}
}