darty_lisp 0.1.1
A starting point for Dart libraries or applications.
Darty LISP
A library for LISP developers looking for Darty expreinces.
Usage
A simple usage example:
import 'package:darty_lisp/darty_lisp.dart';
main() {
// Lexer to generate tokens for LISP programs
Tokens lexer = new Tokens();
lexer.program = '(add 2 3)';
lexer.generate();
lexer.prettyPrint();
}
Features and bugs
Please file feature requests and bugs at the issue tracker.