RosettaCodeData/Task/User-input-Text/Elena/user-input-text.elena

10 lines
190 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import extensions;
public program()
{
var num := new Integer();
2024-03-06 22:25:12 -08:00
console.write("Enter an integer: ").loadLineTo(num);
2023-07-01 11:58:00 -04:00
2024-03-06 22:25:12 -08:00
var word := console.write("Enter a String: ").readLine()
2023-07-01 11:58:00 -04:00
}