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.

ZeroByte

From Esolang
Jump to navigation Jump to search

ZeroByte is a programming language designed for writing other tiny programming languages. A microlang can be implemented in ZeroByte in as little as one byte.

Syntax

Each function takes up one byte.

  • q - Prints line of user input

All other characters are ignored.

Implementation

Python

code = input('code: ')
for x in code:
    if x=='q':
        print(input())