A templating language that looks like Lisp and compiles to HTML
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. };