Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 213 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 213 Bytes

UNDO

Simple C-like language that can go forward and backwards in code. Implemented using continuations.

Example Program:

x = 10;
Right;	
x = x - 1;
if (x) {Left}

It bounces left and right unless x = 0.