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

10 lines
187 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2016-12-05 22:15:40 +01:00
2019-09-12 10:33:56 -07:00
public program()
{
var num := new Integer();
console.write:"Enter an integer: ".loadLineTo:num;
2017-09-23 10:01:46 +02:00
2019-09-12 10:33:56 -07:00
var word := console.write:"Enter a String: ".readLine()
}