Files
codeql-action/tests/multi-language-repo/main.rb
2020-05-08 11:51:47 +02:00

12 lines
135 B
Ruby
Executable File

#!/usr/bin/ruby
# frozen_string_literal: true
def main
v = ARGV[0]
puts 'with arg?' unless v.nil?
puts 'hello there'
end
main