A templating language that looks like Lisp and compiles to HTML
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 500B

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