9 lines
176 B
Text
9 lines
176 B
Text
|
|
class Parse {
|
||
|
|
function : Main(args : String[]) ~ Nil {
|
||
|
|
tokens := "Hello,How,Are,You,Today"->Split(",");
|
||
|
|
each(i : tokens) {
|
||
|
|
tokens[i]->PrintLine();
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|