rpl.rb/lib/language/general.rb
2021-11-10 16:21:47 +01:00

12 lines
153 B
Ruby

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