1
0

Repo init

This commit is contained in:
neviyn 2020-07-21 13:47:23 +01:00
commit 501ae30546
2 changed files with 19 additions and 0 deletions

14
raytracer_nim.nimble Normal file
View File

@ -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"

5
src/raytracer_nim.nim Normal file
View File

@ -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!")