blob: 8a3aeea381b2ffae7437b7cab375a1b0d7c6b8ea [file] [edit]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:yaml_edit/yaml_edit.dart';
void main() {
final doc = YamlEditor('''
- 0 # comment 0
- 1 # comment 1
- 2 # comment 2
''');
doc.remove([1]);
print(doc);
}