diff options
| author | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-10 02:15:24 -0600 |
|---|---|---|
| committer | Scott Lawrence <scott+git@ineffectivetheory.com> | 2024-06-10 02:15:24 -0600 |
| commit | 1c3897db6d17973a66985bb6fc0c3cac0e13a5e5 (patch) | |
| tree | a5de0fe67f8119a3d7e0c962c2b665dfdcd134f8 /src/Vatic.jl | |
| parent | 233b57ac3318b5f44be9ef63c94726e7b4d485dc (diff) | |
| download | vatic-1c3897db6d17973a66985bb6fc0c3cac0e13a5e5.tar.gz vatic-1c3897db6d17973a66985bb6fc0c3cac0e13a5e5.tar.bz2 vatic-1c3897db6d17973a66985bb6fc0c3cac0e13a5e5.zip | |
Various stubbing
Diffstat (limited to 'src/Vatic.jl')
| -rw-r--r-- | src/Vatic.jl | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/src/Vatic.jl b/src/Vatic.jl index 275c2eb..51abad3 100644 --- a/src/Vatic.jl +++ b/src/Vatic.jl @@ -1,5 +1,26 @@ module Vatic -greet() = print("Hello World!") +include("Data.jl") -end # module vatic +include("MonteCarlo.jl") + +include("platforms/Manifold.jl") +include("platforms/Metaculus.jl") + +using ArgParse +using REPL + +function main() + args = let + s = ArgParseSettings() + @add_arg_table s begin + end + parse_args(s) + end + + term = REPL.Terminals.TTYTerminal("dumb", stdin, stdout, stderr) + repl = REPL.LineEditREPL(term, true) + REPL.run_repl(repl) +end + +end |
