13 lines
271 B
Text
13 lines
271 B
Text
use IO;
|
|
|
|
bundle Default {
|
|
class Hello {
|
|
function : Main(args : String[]) ~ Nil {
|
|
string := Console->GetInstance()->ReadString();
|
|
string->PrintLine();
|
|
|
|
number := Console->GetInstance()->ReadString()->ToInt();
|
|
number->PrintLine();
|
|
}
|
|
}
|
|
}
|