NimYAML icon indicating copy to clipboard operation
NimYAML copied to clipboard

YAML implementation for Nim

Results 12 NimYAML issues
Sort by recently updated
recently updated
newest added

YAML 1.2 requires UTF-16 and UTF-32 support. Currently, only UTF-8 is processed.

enhancement

```nim import yaml type Node = ref object name1: string = "A" name2: string = "B" static: echo Dumper().dump(Node()) ``` Compiler output: Error: unhandled exception: field 'sym' is not accessible...