RosettaCodeData/Task/Execute-a-system-command/Fantom/execute-a-system-command.fantom

9 lines
88 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
class Main
{
public static Void main ()
{
p := Process (["ls"])
p.run
}
}