A templating language that looks like Lisp and compiles to HTML
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.js 553B

123456789101112131415161718192021
  1. const Application = require("./application");
  2. const Attribute = require("./attribute");
  3. const Boolean = require("./boolean");
  4. const Identifier = require("./identifier");
  5. const Lambda = require("./lambda");
  6. const List = require("./list");
  7. const Number = require("./number");
  8. const String = require("./string");
  9. const Symbol = require("./symbol");
  10. module.exports = {
  11. Application: Application,
  12. Attribute: Attribute,
  13. Boolean: Boolean,
  14. Identifier: Identifier,
  15. Lambda: Lambda,
  16. List: List,
  17. Number: Number,
  18. String: String,
  19. Symbol: Symbol,
  20. };