Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ralexstokes/ubiquity
A Clojure-like Lisp in Rust
https://github.com/ralexstokes/ubiquity
Last synced: 20 days ago
JSON representation
A Clojure-like Lisp in Rust
- Host: GitHub
- URL: https://github.com/ralexstokes/ubiquity
- Owner: ralexstokes
- License: mit
- Created: 2018-09-22T22:45:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-27T01:55:36.000Z (over 3 years ago)
- Last Synced: 2024-10-06T16:41:08.706Z (about 1 month ago)
- Language: Rust
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ubiquity
[![Build Status](https://travis-ci.org/ralexstokes/ubiquity.svg?branch=master)](https://travis-ci.org/ralexstokes/ubiquity)
# about the language
`ubiquity` is a Lisp language inspired by Clojure.
## syntax
Refer to `parser::lexer::Token` for the possible syntactic elements. In general, the lexer recognizes a number of delimiters and numeric types; all other input is considered a symbol. Given that the `Token::Symbol` type wraps a `&str` from Rust, any valid Rust string (aka UTF-8) is a valid symbol in `ubiquity`.
## grammar
refer to `parser::ast::Ast` for the possible grammatical types.