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