rpl.rb/lib/core/general.rb
2021-12-07 16:03:03 +01:00

12 lines
150 B
Ruby

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