9 lines
176 B
Text
9 lines
176 B
Text
|
|
class Test {
|
||
|
|
function : Main(args : String[]) ~ Nil {
|
||
|
|
output := System.Runtime->CommandOutput("ls -l");
|
||
|
|
each(i : output) {
|
||
|
|
output[i]->PrintLine();
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|