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