sexp ~master

A minimal S-expression library


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

A minimal S-expression library for D.

This library is for handling S-expressions. Provides conversion functions between S-expression data and S-expression string.

Example

import sexp;

Sexp s = parse("(+ 1 (- 3 2))");
assert(s.toString == "(+ 1 (- 3 2))");

Sexp consed = s.cons(0);
assert(consed.toString == "(0 + 1 (- 3 2))");
Authors:
  • agatan
Dependencies:
none
Versions:
0.0.1 2015-Sep-28
~master 2015-Sep-28
Show all 2 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 0 downloads this month

  • 84 downloads total

Score:
0.7
Short URL:
sexp.dub.pm