summary refs log tree commit diff stats
path: root/tests/accept/compile/tconsteval.nim
blob: dcc7080ead2a784b2e50669def404efab4bea83b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
discard """
"""

import strutils

const
  HelpText = """
+-----------------------------------------------------------------+
|         Maintenance program for Nimrod                          |
|             Version $1|
|             (c) 2009 Andreas Rumpf                              |
+-----------------------------------------------------------------+
Compiled at: $2, $3

Usage:
  koch [options] command [options for command]
Options:
  --force, -f, -B, -b      forces rebuild
  --help, -h               shows this help and quits
Possible Commands:
  boot [options]           bootstraps with given command line options
  clean                    cleans Nimrod project; removes generated files
  web                      generates the website
  csource [options]        builds the C sources for installation
  zip                      builds the installation ZIP package
  inno                     builds the Inno Setup installer
""" % [NimrodVersion & repeatChar(44-len(NimrodVersion)), 
       CompileDate, CompileTime]

echo helpText