From dc51c937c3fc290119cfcbe79700f340ed026db8 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Fri, 30 Jun 2023 11:23:06 -0500 Subject: [PATCH] Initial commit with project stub. --- src/stock_watcher.nim | 5 +++++ stock_watcher.nimble | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/stock_watcher.nim create mode 100644 stock_watcher.nimble diff --git a/src/stock_watcher.nim b/src/stock_watcher.nim new file mode 100644 index 0000000..862d40c --- /dev/null +++ b/src/stock_watcher.nim @@ -0,0 +1,5 @@ +# This is just an example to get you started. A typical binary package +# uses this file as the main entry point of the application. + +when isMainModule: + echo("Hello, World!") diff --git a/stock_watcher.nimble b/stock_watcher.nimble new file mode 100644 index 0000000..4e8d425 --- /dev/null +++ b/stock_watcher.nimble @@ -0,0 +1,13 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Utility to monitor the price of specific stocks." +license = "MIT" +srcDir = "src" +bin = @["stock_watcher"] + + +# Dependencies + +requires "nim >= 1.6.10"