diff options
| -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 |
