Skip to content

ENSEMBLE: Novel Synthesis of Eich, McCarthy, Berners-Lee, Lie, etc.

License

Notifications You must be signed in to change notification settings

dustinboston/ensemble

Repository files navigation

Ensemble

ENSEMBLE: Novel Synthesis of Eich, McCarthy, Berners-Lee, Lie, etc.

ENSEMBLE is a web programming language that combines JavaScript, HTML, and CSS with a Lisp-like syntax.

Syntax

(var fibonacci (function (n)
  (if (<= n 1) n 
    (+ (fibonacci (- n 1)) 
       (fibonacci (- n 2))))));

Development

Tests

Run all test suites:

./test.sh

Run a single test suite:

./test.sh [--e2e] [--fun] [--unit]

Standards

JSON Schema

https://www.jsongenerator.io/schema

Credits

License

See LICENSE

About

ENSEMBLE: Novel Synthesis of Eich, McCarthy, Berners-Lee, Lie, etc.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages