DEV Community

Discussion on: What Are Some Good Starting Points to Learn What I Need to Write My Own Toy Language?

Collapse
 
davidszabo97 profile image
Dávid Szabó • Edited

I also have some special feature in my toy lanuage: (I have no idea how I did it, my lang contains some secrets.)


for (i = 0; i < 5; for (j = 0; j < 5; j = j+1) {print('j')} i=i+1) {print('i')}

Yes, that's a for in a for.