class Spitewaste::AssemblyEmitter

Public Instance Methods

emit(io: io.puts instructions.map { |i| (i * ' ').rstrip }) click to toggle source
# File lib/spitewaste/emitters/assembly.rb, line 3
def emit io:
  io.puts instructions.map { |i| (i * ' ').rstrip }
end