10 lines
187 B
Text
10 lines
187 B
Text
|
|
import extensions;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
var num := new Integer();
|
||
|
|
console.write:"Enter an integer: ".loadLineTo:num;
|
||
|
|
|
||
|
|
var word := console.write:"Enter a String: ".readLine()
|
||
|
|
}
|