10 lines
263 B
Text
10 lines
263 B
Text
|
|
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
|