12 lines
153 B
Ruby
12 lines
153 B
Ruby
module Rpn
|
|
module Core
|
|
module General
|
|
module_function
|
|
|
|
# no operation
|
|
def nop( stack )
|
|
stack
|
|
end
|
|
end
|
|
end
|
|
end
|