feat(wpcarro/scratch): Rewrite Python compiler in OCaml

Just to see how productive I could be in OCaml with little familiarity. Overall
I really like it.

Change-Id: I8affc65a5ee86a29d4f8c01426529ae9948660f9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6934
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
This commit is contained in:
William Carroll 2022-10-10 15:25:51 -07:00 committed by clbot
parent 019ea51e5c
commit 0b04dfe03c
4 changed files with 154 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
ocaml
ocamlPackages.utop
ocamlformat
];
}