rnix 0.10.2

A Nix parser written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  int = 3;
  float = 2.1;
  string = "Hello World";
  multiline = ''
    This is a multiline string :D
    \'\'\'\'\
    multiline = '''
      Two single quotes: '''',
      Interpolation: ''${test},
      Escape interpolation: '''''${test}
    ''';
    special escape: $${test}
  '';
}