RosettaCodeData/Task/Sleep/EasyLang/sleep.easy

6 lines
107 B
Text
Raw Permalink Normal View History

2023-10-02 18:11:16 -07:00
print "How many seconds should I sleep? "
sec = number input
print "Sleeping ..."
sleep sec
print "Awake!"