rpl.rb/lib/language/general.rb
2021-11-23 13:10:03 +01:00

10 lines
116 B
Ruby

module Rpl
module Core
module_function
# no operation
def nop( stack )
stack
end
end
end