nimrod -> nim

This commit is contained in:
Erik Johansson Andersson
2016-02-05 19:11:43 +01:00
parent ac1e7a2450
commit f8d98700ac
15 changed files with 26 additions and 26 deletions

View File

@@ -3,7 +3,7 @@
import backend, parseopt, strutils
const
USAGE = """nimcalculator - Nimrod cross platform calculator
USAGE = """nimcalculator - Nim cross platform calculator
(beta version, only integer addition is supported!)
Usage:

View File

@@ -3,7 +3,7 @@
import backend, db_sqlite, os, parseopt, parseutils, strutils, times
const
USAGE = """nimtodo - Nimrod cross platform todo manager
USAGE = """nimtodo - Nim cross platform todo manager
Usage:
nimtodo [command] [list options]
@@ -195,7 +195,7 @@ proc generateDatabaseRows(conn: TDbConn) =
## Adds some rows to the database ignoring errors.
discard conn.addTodo(1, "Watch another random youtube video")
discard conn.addTodo(2, "Train some starcraft moves for the league")
discard conn.addTodo(3, "Spread the word about Nimrod")
discard conn.addTodo(3, "Spread the word about Nim")
discard conn.addTodo(4, "Give fruit superavit to neighbours")
var todo = conn.addTodo(4, "Send tax form through snail mail")
todo.isDone = true

View File

@@ -28,6 +28,6 @@ html mainPage:
title "now look at this"
body:
ul:
li "Nimrod is quite capable"
li "Nim is quite capable"
echo mainPage()