rpl.rb/lib/language/general.rb

13 lines
153 B
Ruby
Raw Normal View History

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