Initial commit

This commit is contained in:
Quad 2022-04-07 19:03:56 +02:00
commit 3bb2f3cfba
4 changed files with 23 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# Binary name built by nimble
nimblog

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# nimblog
Placeholder text

13
nimblog.nimble Normal file
View File

@ -0,0 +1,13 @@
# Package
version = "0.1.0"
author = "Quad"
description = "Basic nim blog"
license = "WTFPL"
srcDir = "src"
bin = @["nimblog"]
# Dependencies
requires "nim >= 1.6.0"

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