diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-10 00:44:10 -0600 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-10 00:44:10 -0600 |
| commit | 233b57ac3318b5f44be9ef63c94726e7b4d485dc (patch) | |
| tree | 5289c8dddecabb81fc9c57fcb94c9eb76abce342 | |
| download | vatic-233b57ac3318b5f44be9ef63c94726e7b4d485dc.tar.gz vatic-233b57ac3318b5f44be9ef63c94726e7b4d485dc.tar.bz2 vatic-233b57ac3318b5f44be9ef63c94726e7b4d485dc.zip | |
Initial commit
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Project.toml | 4 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/Vatic.jl | 5 |
4 files changed, 12 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8fce603 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data/ diff --git a/Project.toml b/Project.toml new file mode 100644 index 0000000..4815b83 --- /dev/null +++ b/Project.toml @@ -0,0 +1,4 @@ +name = "vatic" +uuid = "3f5c9d7e-ef70-4fb5-865c-f72c76f49168" +authors = ["Scott Lawrence <scott+git@ineffectivetheory.com>"] +version = "0.1.0" diff --git a/README.md b/README.md new file mode 100644 index 0000000..191d1b6 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# Vatic + diff --git a/src/Vatic.jl b/src/Vatic.jl new file mode 100644 index 0000000..275c2eb --- /dev/null +++ b/src/Vatic.jl @@ -0,0 +1,5 @@ +module Vatic + +greet() = print("Hello World!") + +end # module vatic |
