gdritter repos bricoleur / master examples / structural-types / bricoleur
master

Tree @master (Download .tar.gz)

bricoleur @masterraw · history · blame

(document "post.md"

  { name ocaml
    dir "ocaml-source"
    cmd [
      "rm -f main main.cmi main.cmo"
      "ocamlc main.ml -o main"
    ]
    expose (sections "main.ml")
  }

  { name java
    dir "java-source"
    cmd [
      "rm -f Main.class"
      "javac Main.java"
    ]
    expose (sections "Main.java")
  }

  { name crystal
    dir "crystal-source"
    cmd [
      "crystal build src/crystal-source.cr"
    ]
    expose (sections "src/crystal-source.cr")
  }

)