I\'m developing a small python like language using flex, byacc (for lexical and parsing) and C++, but i have a few questions regarding scope control.
just as python it u
Very interesting exercise. Can't you use the end keyword to check when the scope ends?
end
On a different note, I have never seen a language that allows you to break out of several nested loops at once. There may be a good reason for that...