├── .gitignore ├── .ocamlformat ├── Makefile ├── README.md ├── bsconfig.json ├── dune ├── dune-project ├── esy.json ├── esy.lock ├── .gitattributes ├── .gitignore ├── index.json ├── opam │ ├── astring.0.8.3 │ │ └── opam │ ├── base-bytes.base │ │ └── opam │ ├── base-threads.base │ │ └── opam │ ├── base-unix.base │ │ └── opam │ ├── base.v0.12.2 │ │ └── opam │ ├── cmdliner.1.0.4 │ │ └── opam │ ├── conf-m4.1 │ │ └── opam │ ├── dune-configurator.1.0.0 │ │ └── opam │ ├── dune.1.11.4 │ │ └── opam │ ├── fpath.0.7.2 │ │ └── opam │ ├── jbuilder.transition │ │ └── opam │ ├── ocaml-migrate-parsetree.1.4.0 │ │ └── opam │ ├── ocamlbuild.0.14.0 │ │ └── opam │ ├── ocamlfind.1.8.1 │ │ ├── files │ │ │ ├── ocaml-stub │ │ │ └── ocamlfind.install │ │ └── opam │ ├── ocamlformat.0.10 │ │ └── opam │ ├── octavius.1.2.1 │ │ └── opam │ ├── ppx_derivers.1.2.1 │ │ └── opam │ ├── result.1.4 │ │ └── opam │ ├── sexplib0.v0.12.0 │ │ └── opam │ ├── stdio.v0.12.0 │ │ └── opam │ ├── topkg.1.0.1 │ │ └── opam │ ├── uchar.0.0.2 │ │ └── opam │ ├── uucp.12.0.0 │ │ └── opam │ ├── uuseg.12.0.0 │ │ └── opam │ └── uutf.1.0.2 │ │ └── opam └── overrides │ ├── opam__s__dune_opam__c__1.11.4_opam_override │ └── package.json │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ ├── files │ │ └── ocamlbuild-0.14.0.patch │ └── package.json │ └── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ ├── files │ └── findlib-1.8.1.patch │ └── package.json ├── js ├── date.re └── yesterday_impl.re ├── native ├── date.ml └── yesterday_impl.ml ├── package.json ├── shared ├── tomorrow.ml ├── yesterday.ml └── yesterday.mli └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /lib 3 | .merlin 4 | *.bs.js 5 | /_esy -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | profile = conventional -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/bsconfig.json -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.10) -------------------------------------------------------------------------------- /esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.json -------------------------------------------------------------------------------- /esy.lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/.gitattributes -------------------------------------------------------------------------------- /esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/.gitignore -------------------------------------------------------------------------------- /esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/index.json -------------------------------------------------------------------------------- /esy.lock/opam/astring.0.8.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/astring.0.8.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-bytes.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/base-bytes.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-threads.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/base-threads.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-unix.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/base-unix.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base.v0.12.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/base.v0.12.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/cmdliner.1.0.4/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/cmdliner.1.0.4/opam -------------------------------------------------------------------------------- /esy.lock/opam/conf-m4.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/conf-m4.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune-configurator.1.0.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/dune-configurator.1.0.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune.1.11.4/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/dune.1.11.4/opam -------------------------------------------------------------------------------- /esy.lock/opam/fpath.0.7.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/fpath.0.7.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/jbuilder.transition/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/jbuilder.transition/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocaml-migrate-parsetree.1.4.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ocaml-migrate-parsetree.1.4.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlbuild.0.14.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ocamlbuild.0.14.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.1/files/ocaml-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ocamlfind.1.8.1/files/ocaml-stub -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.1/files/ocamlfind.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ocamlfind.1.8.1/files/ocamlfind.install -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.8.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ocamlfind.1.8.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlformat.0.10/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ocamlformat.0.10/opam -------------------------------------------------------------------------------- /esy.lock/opam/octavius.1.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/octavius.1.2.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/ppx_derivers.1.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/ppx_derivers.1.2.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/result.1.4/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/result.1.4/opam -------------------------------------------------------------------------------- /esy.lock/opam/sexplib0.v0.12.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/sexplib0.v0.12.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/stdio.v0.12.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/stdio.v0.12.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/topkg.1.0.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/topkg.1.0.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/uchar.0.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/uchar.0.0.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/uucp.12.0.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/uucp.12.0.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/uuseg.12.0.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/uuseg.12.0.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/uutf.1.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/opam/uutf.1.0.2/opam -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__dune_opam__c__1.11.4_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/overrides/opam__s__dune_opam__c__1.11.4_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/files/ocamlbuild-0.14.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/files/ocamlbuild-0.14.0.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/package.json -------------------------------------------------------------------------------- /js/date.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/js/date.re -------------------------------------------------------------------------------- /js/yesterday_impl.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/js/yesterday_impl.re -------------------------------------------------------------------------------- /native/date.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/native/date.ml -------------------------------------------------------------------------------- /native/yesterday_impl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/native/yesterday_impl.ml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/package.json -------------------------------------------------------------------------------- /shared/tomorrow.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/shared/tomorrow.ml -------------------------------------------------------------------------------- /shared/yesterday.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/shared/yesterday.ml -------------------------------------------------------------------------------- /shared/yesterday.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/shared/yesterday.mli -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahrefs/hello-native-melange/HEAD/yarn.lock --------------------------------------------------------------------------------