commit 501ae30546aa233f13a59ac539de9b7affc48b26 Author: neviyn Date: Tue Jul 21 13:47:23 2020 +0100 Repo init diff --git a/raytracer_nim.nimble b/raytracer_nim.nimble new file mode 100644 index 0000000..3b885c8 --- /dev/null +++ b/raytracer_nim.nimble @@ -0,0 +1,14 @@ +# Package + +version = "0.1.0" +author = "neviyn" +description = "Raytracer implementation in nim." +license = "Proprietary" +srcDir = "src" +bin = @["raytracer_nim"] + + + +# Dependencies + +requires "nim >= 1.3.3" diff --git a/src/raytracer_nim.nim b/src/raytracer_nim.nim new file mode 100644 index 0000000..862d40c --- /dev/null +++ b/src/raytracer_nim.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!")