Yet another lisp interpreter
Inspired by Liutos
dotnet test
- using dotnet run
$ dotnet run --project .\Cl.Utop\Cl.Utop.csproj
- using dotnet tool
$ dotnet pack -c Release
$ dotnet tool install --global --add-source ./Cl.Utop/nupkg toy-lisp
$ where toy-lisp
$ toy-lisp
$ dotnet tool uninstall toy-lisp -g
$ dotnet tool list -g
By default REPL loads the stdlib file so you can use predefined functions written in toy lisp.
(define hello-world 'Hello World!')
(println hello-world)
In case you want more examples