root/NEWT0/trunk/src/version.h

Revision 105, 1.8 kB (checked in by gnue, 18 months ago)

Behavior when the message is sent to NIL is changed.
NIL:?method(); doesn't throw exception.
This behavior is the same as Newton.

Line 
1/*------------------------------------------------------------------------*/
2/**
3 * @file    version.h
4 * @brief   バージョン情報
5 *
6 * @author  M.Nukui
7 * @date    2003-11-07
8 *
9 * Copyright (C) 2003-2005 M.Nukui All rights reserved.
10 */
11
12
13#ifndef NEWTVERSION_H
14#define NEWTVERSION_H
15
16/* マクロ定義 */
17#define NEWT_NAME       "newt"                                  ///< コマンド名
18#define NEWT_PROTO      "/0"                                    ///< プロト
19#define NEWT_VERSION    "0.1.3"                                 ///< バージョン
20#define NEWT_COPYRIGHT  "Copyright (C) 2003-2007 Makoto Nukui"  ///< コピーライト
21#define NEWT_BUILD      "2007-05-18-1"                          ///< ビルド番号
22#define NEWT_PARAMS     "[switches] [--] [programfile]"         ///< 引数
23
24/// 使用方法
25#define NEWT_USAGE      "  -t              enable trace mode\n"         \
26                        "  -l              dump lex info\n"             \
27                        "  -s              dump syntax tree\n"          \
28                        "  -b              dump byte code\n"            \
29                        "  -C directory    change working directory\n"  \
30                        "  -e 'command'    one line of script\n"        \
31                        "  -i [symbols]    print function info\n"       \
32                        "  -v              print version number\n"      \
33                        "  -h              print this help message\n"   \
34                        "  --newton,--nos2 Newton OS 2.0 compatible \n" \
35                        "  --copyright     print copyright\n"           \
36                        "  --version       print version number\n"
37
38/// スタッフロール
39#define NEWT_STAFF      "Program\n"                                     \
40                        "  Makoto Nukui\n"                              \
41                        "\n"                                            \
42                        "Contribute\n"                                  \
43                        "  Paul Guyot\n"                                \
44                        "  Matthias\n"                                  \
45                        "\n"                                            \
46                        "Special Thanks\n"                              \
47                        "  sumim\n"                                     \
48                        "  Rihatsu\n"                                   \
49                        ""
50
51#endif /* NEWTVERSION_H */
Note: See TracBrowser for help on using the browser.