A templating language that looks like Lisp and compiles to HTML
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 445B

1234567891011121314151617
  1. const Application = require('./application')
  2. const Attribute = require('./attribute')
  3. const Boolean = require('./boolean')
  4. const Identifier = require('./identifier')
  5. const Number = require('./number')
  6. const String = require('./string')
  7. const Symbol = require('./symbol')
  8. module.exports = {
  9. Application: Application,
  10. Attribute: Attribute,
  11. Boolean: Boolean,
  12. Identifier: Identifier,
  13. Number: Number,
  14. String: String,
  15. Symbol, Symbol,
  16. }