visE

From Esolang
Jump to navigation Jump to search
This is still a work in progress. It may be changed in the future.

visE is an esoteric programming language created by User:Danieland! inspired by Befunge and brainfuck.

Syntax

The syntax is like that of Befunge and brainfuck.

Caption text
name syntax meaning
direction 0 < point in direction 0 (left)
direction 1 ^ point in direction 1 (up)
direction 2 > point in direction 2 (right)
direction 3 v point in direction 3 (down)
bounce box x set direction to ((direction+2)%4)
bounce pad # ignore all commands until another #
bounce vertical wall | if (direction%2)=1 then do nothing else set direction to ((direction+2)%4)
bounce horizontal wall _ if (direction%2)=0 then do nothing else set direction to ((direction+2)%4)
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example
Example Example Example