Initial Commit

This commit is contained in:
Michael Chalupiak
2025-07-19 23:05:38 -04:00
commit 55bc1c39a6
31 changed files with 617 additions and 0 deletions

5
nim/src/ssg.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!")

13
nim/ssg.nimble Normal file
View File

@@ -0,0 +1,13 @@
# Package
version = "0.1.0"
author = "Michael Chalupiak"
description = "Static Site Generator in Nim"
license = "MIT"
srcDir = "src"
bin = @["ssg"]
# Dependencies
requires "nim >= 2.2.4"