9 lines
148 B
Text
9 lines
148 B
Text
include get.e
|
|
|
|
sequence s
|
|
atom n
|
|
|
|
s = prompt_string("Enter a string:")
|
|
puts(1, s & '\n')
|
|
n = prompt_number("Enter a number:",{})
|
|
printf(1, "%d", n)
|