f (None1)

From Esolang
Jump to navigation Jump to search
Not to be confused with F.

f is an esolang invented by User:None1.

It is a bf derivative. bf has 8 commands, but f has only 4.

Commands

b has these 4 commands - , < and ]. They work like in brainfuck.

Examples

Input a byte

,

Since f has only half of the commands, the power of it is very limited.

Interpreters

Python

import sys
for i in input():
    if i==',':sys.stdin.read(1)
    if i==']':raise Exception('Unmatched ]')

See also