Create project structure

This commit is contained in:
mollusk 2020-08-17 22:44:46 -07:00
parent 1533513f17
commit 541ed26fa8
2 changed files with 22 additions and 0 deletions

15
hangme.nimble Normal file
View File

@ -0,0 +1,15 @@
# Package
version = "0.1.0"
author = "mollusk"
description = "A shitty hangman clone"
license = "ISC"
srcDir = "src"
installExt = @["nim"]
bin = @["hangme"]
# Dependencies
requires "nim >= 1.2.6"

7
src/hangme.nim Normal file
View File

@ -0,0 +1,7 @@
# This is just an example to get you started. A typical hybrid package
# uses this file as the main entry point of the application.
import hangmepkg/submodule
when isMainModule:
echo(getWelcomeMessage())