kdl 0.1.0
kdl: ^0.1.0 copied to clipboard
Dart implementation of the KDL Document Language
example/lib/main.dart
import 'package:kdl/kdl.dart';
main() {
var document = Kdl.parseDocument("""
node 1 2 3 "foo" bar="baz" {
childNode 1
childNode 2
}
""");
print(document.toString());
}