func (vm *Machine) lineNumber(stmt *gcode.Block) { if stmt.Length() > 0 { if w, ok := stmt.Nodes[0].(*gcode.Word); ok { if w.Address == 'N' { // We just ignore and consume the line number stmt.Remove(w) } } } }