From 2acad2efe4d8f65a769e5abbdbe3855027566e93 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 3 Feb 2016 18:46:57 -0800 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ README.md | 18 ++++++++++++++++++ h3.nimble | 14 ++++++++++++++ src/h3.nim | 1 + 4 files changed, 35 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 h3.nimble create mode 100644 src/h3.nim diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b96589a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +h3 +nimcache diff --git a/README.md b/README.md new file mode 100644 index 0000000..708f426 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +h3 +== + +Bizarre IRC bot. Do not be afraid. + +The goal of this is to replace [`h`](https://git.xeserv.us/xena/h) with +something that is different than Python. + +Using Nim because WHY NOT. + +Running +------- + +```console +$ nimble build +$ ./h3 --newConfig +$ ./h3 h3.toml +``` diff --git a/h3.nimble b/h3.nimble new file mode 100644 index 0000000..9ce3dc8 --- /dev/null +++ b/h3.nimble @@ -0,0 +1,14 @@ +# Package + +version = "0.1.0" +author = "Christine Dodrill" +description = "The h IRC bot, version 3" +license = "MIT" +srcDir = "src" +bin = @["h3"] + +# Dependencies + +requires "nim >= 0.13.0", "irc" + +switch "define", "ssl" diff --git a/src/h3.nim b/src/h3.nim new file mode 100644 index 0000000..8d3dd23 --- /dev/null +++ b/src/h3.nim @@ -0,0 +1 @@ +echo "h3h3"