Skip to content

Instantly share code, notes, and snippets.

@bingxie
Created January 18, 2020 11:03
Show Gist options
  • Save bingxie/605453b77d2a97735646bf4e005ad19e to your computer and use it in GitHub Desktop.
Save bingxie/605453b77d2a97735646bf4e005ad19e to your computer and use it in GitHub Desktop.
Test Ruby code
# this is a ruby file
def Hello
puts "Hello World"
end
class Job
def perform(*args)
args.each do |arg|
puts arg + "!"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment