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

9 lines
88 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Main
{
public static Void main ()
{
p := Process (["ls"])
p.run
}
}