jus1d / wis

Stack-based programming language
3 stars 0 forks source link

Bindings #16

Closed jus1d closed 6 months ago

jus1d commented 6 months ago

Bindings

I'd like to create bindings, as light-weight procedures

Example:

bind sum do
  2 4 +
  put
end

also it can be used as variable (stack-weird-style-variable though) like this:

bind PORT do 6969 end

After declaration these bindings, I'd like to use them in code just like that:

PORT put

Expected ouput: 6969