mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
12 lines
135 B
Ruby
Executable File
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
|