From 1c3897db6d17973a66985bb6fc0c3cac0e13a5e5 Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Mon, 10 Jun 2024 02:15:24 -0600 Subject: Various stubbing --- src/Vatic.jl | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'src/Vatic.jl') 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 -- cgit v1.2.3-54-g00ecf