rpl.rb/lib/language/general.rb

11 lines
116 B
Ruby
Raw Normal View History

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