11 lines
135 B
Ruby
Executable file
11 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
|