User input/Text: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 954:
i = tonumber(io.stdin:read())
</lang>
 
=={{header|M2000 Interpreter}}==
<lang M2000 Interpreter>
Module CheckIt {
Keyboard "75000"+chr$(13)
Input "Integer:", A%
\\ Input erase keyboard buffer, we can't place in first Keyboard keys for second input
Keyboard "Hello World"+Chr$(13)
Input "String:", A$
Print A%, A$
}
CheckIt
</lang>
 
 
=={{header|Maple}}==
Anonymous user