7 lines
260 B
Scala
Raw Permalink Normal View History

2022-04-07 18:43:21 +02:00
object HelloInt {
Std.printString("What is your name?");
val name: String = Std.readString();
Std.printString("Hello " ++ name ++ "! And how old are you?");
val age: Int = Std.readInt();
Std.printString(Std.intToString(age) ++ " years old then.");
}