From 233b57ac3318b5f44be9ef63c94726e7b4d485dc Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Mon, 10 Jun 2024 00:44:10 -0600 Subject: Initial commit --- .gitignore | 1 + Project.toml | 4 ++++ README.md | 2 ++ src/Vatic.jl | 5 +++++ 4 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 Project.toml create mode 100644 README.md create mode 100644 src/Vatic.jl 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 "] +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 -- cgit v1.2.3-54-g00ecf