Initial commit
This commit is contained in:
commit
3bb2f3cfba
|
@ -0,0 +1,2 @@
|
|||
# Binary name built by nimble
|
||||
nimblog
|
|
@ -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"
|
|
@ -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