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.

list.js 122B

1234567
  1. const Node = require("./node");
  2. module.exports = class List extends Node {
  3. constructor(opts) {
  4. super(opts);
  5. }
  6. };