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())