From 7640f28a387b27cd4ee3d75dfb55b38f2c14eb4e Mon Sep 17 00:00:00 2001 From: Magnus Madsen Date: Sun, 26 Mar 2023 10:37:21 +0200 Subject: [PATCH] Initial commit --- LICENSE.md | 1 + README.md | 4 ++++ flix.toml | 6 ++++++ src/Clerk.flix | 4 ++++ test/TestMain.flix | 0 5 files changed, 15 insertions(+) create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 flix.toml create mode 100644 src/Clerk.flix create mode 100644 test/TestMain.flix diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..9d6b6ba --- /dev/null +++ b/LICENSE.md @@ -0,0 +1 @@ +Enter license information here. diff --git a/README.md b/README.md new file mode 100644 index 0000000..eaa4415 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# museum + +Enter some useful information. + diff --git a/flix.toml b/flix.toml new file mode 100644 index 0000000..d50ccd6 --- /dev/null +++ b/flix.toml @@ -0,0 +1,6 @@ +[package] +name = "museum-clerk" +description = "test" +version = "1.0.0" +flix = "0.34.0" +authors = ["John Doe "] diff --git a/src/Clerk.flix b/src/Clerk.flix new file mode 100644 index 0000000..985e2a8 --- /dev/null +++ b/src/Clerk.flix @@ -0,0 +1,4 @@ +mod Clerk { + def work(): Unit \ IO = + println("Clerking...") +} diff --git a/test/TestMain.flix b/test/TestMain.flix new file mode 100644 index 0000000..e69de29