We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

TimeWaste

From Esolang
Jump to navigation Jump to search

TimeWaste is an esolang that was created by User:Nathi1235. It's a python3 based programming language with one minor twist... certain keywords can only be executed at certain times

Keyword-Timetable

Keyword Time
while 00:00 - 01:00
for 01:00 - 02:00
print 02:00 - 03:00
input 03:00 - 04:00
if 04:00 - 05:00
import 05:00 - 06:00

These Keywords can only be executed at the corresponding time.

Example

Hello World

print("Hello World!")

The program looks exactly the same as in python, but it will only print if the current time is between 2am and 3am. Else it will wait until 2am.

Cat Program

text = input()
print(text)

The Cat program will at least take 23 hours to complete.

Interpreter

Python3 Interpreter