#!ruby -s OPTIMIZATION = { inline_const_cache: true, peephole_optimization: true, tailcall_optimization: false, specialized_instruction: true, operands_unification: true, instructions_unification: true, frozen_string_literal: true, debug_frozen_string_literal: false, coverage_enabled: false, debug_level: 0, } file = File.basename(ARGV[0], ".rb") name = "" iseq = RubyVM::InstructionSequence.compile(ARGF.read, name, name, **OPTIMIZATION) puts <