diff options
author | Louis Pilfold <louis@lpil.uk> | 2021-12-31 16:07:45 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2021-12-31 16:07:45 +0000 |
commit | 0d1188631e400c1733ad893cc07bfb050bd9664f (patch) | |
tree | 4bc7ad28945b6d4a6c2a18358724a38db5f161a1 /src | |
parent | e680f6fd0213d133f188064b684c1c56080f831f (diff) | |
download | gleam_json-0d1188631e400c1733ad893cc07bfb050bd9664f.tar.gz gleam_json-0d1188631e400c1733ad893cc07bfb050bd9664f.zip |
Convert to use Gleam build tool
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam_json.app.src | 15 | ||||
-rw-r--r-- | src/gleam_json.gleam | 3 |
2 files changed, 0 insertions, 18 deletions
diff --git a/src/gleam_json.app.src b/src/gleam_json.app.src deleted file mode 100644 index 030b214..0000000 --- a/src/gleam_json.app.src +++ /dev/null @@ -1,15 +0,0 @@ -{application, gleam_json, - [{description, "A Gleam program"}, - {vsn, "0.1.0"}, - {registered, []}, - {applications, - [kernel, - stdlib, - gleam_stdlib - ]}, - {env,[]}, - {modules, []}, - - {licenses, ["Apache 2.0"]}, - {links, []} -]}. diff --git a/src/gleam_json.gleam b/src/gleam_json.gleam deleted file mode 100644 index b4c61d2..0000000 --- a/src/gleam_json.gleam +++ /dev/null @@ -1,3 +0,0 @@ -pub fn hello_world() -> String { - "Hello, from gleam_json!" -} |