Repo init
This commit is contained in:
commit
501ae30546
14
raytracer_nim.nimble
Normal file
14
raytracer_nim.nimble
Normal 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
5
src/raytracer_nim.nim
Normal 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!")
|
Loading…
Reference in New Issue
Block a user