fork download
  1. module RubyModule
  2. def rubyfunction(num)
  3. puts "within rubyfunction"
  4. puts num
  5. end
  6. module_function :rubyfunction
  7. end# your code goes here
Success #stdin #stdout 0s 6380KB
stdin
Standard input is empty
stdout
Standard output is empty