Content deleted Content added
No edit summary |
mNo edit summary |
||
Line 1:
In [[computer science]], a '''stack-based language''' is a [[computer language]] that uses the [[
A stack-based language tends to be used as intermediate representation of a program during its compilation.
Line 10:
push 10 // push 10 onto the stack
push 20 // push 20
push
add // pop two values from the stack, and push its sum
mul // pop two values from the stack, and push its sum
|