commit dc51c937c3fc290119cfcbe79700f340ed026db8 Author: Jonathan Bernard Date: Fri Jun 30 11:23:06 2023 -0500 Initial commit with project stub. 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"