commit 3bb2f3cfbaa2c3be1d4df46a690c3a3dcc3a5d36 Author: Quad Date: Thu Apr 7 19:03:56 2022 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86ec4eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Binary name built by nimble +nimblog diff --git a/README.md b/README.md new file mode 100644 index 0000000..62c184e --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# nimblog + +Placeholder text diff --git a/nimblog.nimble b/nimblog.nimble new file mode 100644 index 0000000..39776fe --- /dev/null +++ b/nimblog.nimble @@ -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" diff --git a/src/nimblog.nim b/src/nimblog.nim new file mode 100644 index 0000000..862d40c --- /dev/null +++ b/src/nimblog.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!")