Wed, 28 Aug 2024 04:44:05 -0500
add assign types gopls hint too
#!/usr/bin/env ruby File.join(Dir.home, '.rbrc').tap { |f| load f if File.exists?(f) } def execute(_, code) puts _.instance_eval(&code) rescue Errno::EPIPE exit end single_line = ARGV.delete('-l') code = eval("Proc.new { #{ARGV.join(' ')} }") single_line ? STDIN.each { |l| execute(l.chomp, code) } : execute(STDIN.each_line, code) # https://raw.githubusercontent.com/thisredone/rb/master/rb