You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Monty 0.98 is a scripting language that is first compiled into Monty byte codes (Just like Python). It relies on a unique stack, with specific instructions to manipulate it. The goal of this project is to create an interpreter for Monty ByteCodes files.
This repository is a Monty Bytecode Interpreter. This interpreter was built in the C language and reads Monty bytecode files of any extension. This interpreter can be run as either a stack (LIFO) or queue (FIFO).
This is an interpreter for Monty bytecodes files. Through the esoteric Monty is addressed Linked lists, Stacks, Queues - LIFO, FIFO. Developed on Ubuntu Linux using C language. Bonus track - Brainf*ck
Monty 0.98 is a scripting language that is first compiled into Monty byte codes (Just like Python). It relies on a unique stack, with specific instructions to manipulate it. The goal of this project is to create an interpreter for Monty ByteCodes files.