rpl.rb/lib/core/general.rb
2021-12-07 16:09:17 +01:00

14 lines
181 B
Ruby

# frozen_string_literal: true
module Rpl
module Lang
module Core
module_function
# no operation
def nop( stack )
stack
end
end
end
end