RosettaCodeData/Task/Execute-a-system-command/Fantom/execute-a-system-command.fantom
2023-07-01 13:44:08 -04:00

8 lines
88 B
Text

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