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