User Input: Difference between revisions

Logo
m (It turns out the whole task needed works with)
(Logo)
Line 178:
String string = stdin.nextLine();
int number = stdin.nextInt();
 
=={{header|Logo}}==
Logo literals may be read from a line of input from stdin as either a list or a single word.
make "input readlist ; in: string 75000
show map "number? :input ; [false true]
make "input readword ; in: 75000
show :input + 123 ; 75123
make "input readword ; in: string 75000
show :input ; string 75000
 
=={{header|mIRC Scripting Language}}==
Anonymous user