CodePlex Archive | Archived download
Introduction
Yarr is a dynamic lisp-based scripting language for the Microsoft .NET framework. It was originally developed (as LSharp) by Rob Blackwell at Active Web Solutions, and released under GPL. Extensive modifications have been made to the original LSharp code base to improve interoperability between scripts and .NET classes, to add more Common Lisp features to the language, and to make the language easier to integrate into existing .NET based systems.
Yarr is extensible Yarr is an excellent starting point for developing a Domain Specific Language:
- Yarr uses a Common Lisp-like reader, based on readtables, which allows the hosting application to customize the language syntax
- .NET methods and objects from the hosting application can be bound directly into the Yarr environment, and invoked from Yarr scripts as if they were built-in primitives. In fact, all of Yarr's built-in functions are implemented this way
- Functions defined in Yarr scripts can be directly invoked by the hosting application via delegates provided by the Yarr runtime
Language features
- Objects, Methods, and Types are all first-class objects in Yarr
- Yarr supports all built-in and user-defined .NET types, including generics
- Yarr provides traditional Lisp functionality, including macros, property lists, lexical scoping, and a varierty of map/reduce functions
- Yarr functions support Common Lisp-like parameters such as &optional, &key, etc. Host methods bound into the Yarr environment can have Yarr automatically process these parameters for them
Tags:
language
clr
lisp
Last modified 16 December 2024