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