SeedFuck

From Esolang
Jump to navigation Jump to search

SeedFuck is an esolang invented by User:None1, it is seed but for brainfuck.

Programs are like this:

<length> <seed>

Random Generator

SeedFuck uses Python 3.11's random generator, it generates numbers within [0,8)∩Z inclusive and translates the numbers into brainfuck code. For more information, see implementation.

Transpiler in Python from SeedFuck to brainfuck

from random import *
k,l=map(int,input().split());seed(l)
for i in range(k):print('+-,.[]><'[randint(0,7)],end='')

Examples

9 bytes :I interpreter

1 1

Brainfuck equivalent: ,

APLWSI interpreter

0 0

Or:

2 2

Brainfuck equivalent: +-

One-time cat

2 22

Two-time cat

5 24

Infinite cat

5 252

Note this prints a extra null byte.