RosettaCodeData/Task/User-input-Text/Metafont/user-input-text.metafont

13 lines
200 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
string s;
message "write a string: ";
s := readstring;
message s;
message "write a number now: ";
b := scantokens readstring;
if b = 750:
message "You've got it!"
else:
message "Sorry..."
fi;
end