Create project structure
This commit is contained in:
parent
1533513f17
commit
541ed26fa8
15
hangme.nimble
Normal file
15
hangme.nimble
Normal 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
7
src/hangme.nim
Normal 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())
|
Loading…
x
Reference in New Issue
Block a user