diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-26 21:16:48 -0700 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-26 21:16:48 -0700 |
| commit | ede8966c44cca6854012078329482a70235a19ce (patch) | |
| tree | 3e6629114cc11037a6364b30e6c63c402d3ccca6 | |
| parent | a4c197dea1a0192b93e205daf8738f99a4f039b2 (diff) | |
| download | agate-ede8966c44cca6854012078329482a70235a19ce.tar.gz agate-ede8966c44cca6854012078329482a70235a19ce.tar.bz2 agate-ede8966c44cca6854012078329482a70235a19ce.zip | |
| -rw-r--r-- | agate.opam | 33 | ||||
| -rw-r--r-- | bin/dune | 4 | ||||
| -rw-r--r-- | bin/main.ml | 17 | ||||
| -rw-r--r-- | dune-project | 26 | ||||
| -rw-r--r-- | lib/dune | 2 | ||||
| -rw-r--r-- | test/dune | 2 | ||||
| -rw-r--r-- | test/test_agate.ml | 0 |
7 files changed, 0 insertions, 84 deletions
diff --git a/agate.opam b/agate.opam deleted file mode 100644 index c9cea14..0000000 --- a/agate.opam +++ /dev/null @@ -1,33 +0,0 @@ -# This file is generated by dune, edit dune-project instead -opam-version: "2.0" -synopsis: "A strongly typed concatenative language" -description: "A strongly typed concatenative language" -maintainer: ["Scott Lawrence"] -authors: ["Scott Lawrence"] -license: "LICENSE" -tags: ["topics" "to describe" "your" "project"] -homepage: "https://github.com/username/reponame" -doc: "https://url/to/documentation" -bug-reports: "https://github.com/username/reponame/issues" -depends: [ - "ocaml" - "dune" {>= "3.16"} - "sedlex" - "menhir" - "odoc" {with-doc} -] -build: [ - ["dune" "subst"] {dev} - [ - "dune" - "build" - "-p" - name - "-j" - jobs - "@install" - "@runtest" {with-test} - "@doc" {with-doc} - ] -] -dev-repo: "git+https://github.com/username/reponame.git" diff --git a/bin/dune b/bin/dune deleted file mode 100644 index 3891864..0000000 --- a/bin/dune +++ /dev/null @@ -1,4 +0,0 @@ -(executable - (public_name agate) - (name main) - (libraries agate angstrom)) diff --git a/bin/main.ml b/bin/main.ml deleted file mode 100644 index bb0d6ac..0000000 --- a/bin/main.ml +++ /dev/null @@ -1,17 +0,0 @@ -type interpreter = { - stack : int list -} - -type token = Word of string - -let tokenize line : token list = - String.split_on_char ' ' line |> List.map (fun s -> Word s) - -let parse line = - let _tokens = tokenize line in - () - -let () = - let line = input_line stdin |> parse in - print_string "HI" |> print_newline - diff --git a/dune-project b/dune-project deleted file mode 100644 index 43392bf..0000000 --- a/dune-project +++ /dev/null @@ -1,26 +0,0 @@ -(lang dune 3.16) - -(name agate) - -(generate_opam_files true) - -(source - (github username/reponame)) - -(authors "Scott Lawrence") - -(maintainers "Scott Lawrence") - -(license LICENSE) - -(documentation https://url/to/documentation) - -(package - (name agate) - (synopsis "A strongly typed concatenative language") - (description "A strongly typed concatenative language") - (depends ocaml dune angstrom) - (tags - (topics "to describe" your project))) - -; See the complete stanza docs at https://dune.readthedocs.io/en/stable/reference/dune-project/index.html diff --git a/lib/dune b/lib/dune deleted file mode 100644 index 134a0fc..0000000 --- a/lib/dune +++ /dev/null @@ -1,2 +0,0 @@ -(library - (name agate)) diff --git a/test/dune b/test/dune deleted file mode 100644 index 09c38e3..0000000 --- a/test/dune +++ /dev/null @@ -1,2 +0,0 @@ -(test - (name test_agate)) diff --git a/test/test_agate.ml b/test/test_agate.ml deleted file mode 100644 index e69de29..0000000 --- a/test/test_agate.ml +++ /dev/null |
