rpl.rb/lib/core/general.rb

13 lines
150 B
Ruby
Raw Normal View History

module Rpl
2021-12-07 15:50:58 +01:00
module Lang
module Core
module_function
2021-12-07 15:50:58 +01:00
# no operation
def nop( stack )
stack
end
end
end
end