Skip to content

ALX_SE - 0x19. C - Stacks, Queues - LIFO, FIFO

Notifications You must be signed in to change notification settings

codeAKstan/monty

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

0x19. C - Stacks, Queues - LIFO, FIFO

Alx project 19 - Stacks, Queues - LIFO, FIFO

STACK - LIFO

App Screenshot

QUEUE - FIFO

App Screenshot

The Monty language

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.

Monty byte code files

Files containing Monty byte codes usually have the .m extension. Most of the industry uses this standard but it is not required by the specification of the language. There is not more than one instruction per line. There can be any number of spaces before or after the opcode and its argument:

Opereation codes

opcode description
push The opcode push pushes an element to the stack.
pall The opcode pall prints all the values on the stack, starting from the top of the stack.
pint The opcode pint prints the value at the top of the stack, followed by a new line.
pop The opcode pop removes the top element of the stack.
swap The opcode swap swaps the top two elements of the stack.
add The opcode add adds the top two elements of the stack.
nop The opcode nop doesn’t do anything.

About

ALX_SE - 0x19. C - Stacks, Queues - LIFO, FIFO

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages