rpn/src/version.h

14 lines
380 B
C
Raw Normal View History

2015-02-23 17:33:05 +01:00
// version and soft name
2015-02-24 17:05:40 +01:00
static const char version[] = "1.3";
static const char uname[] = "rpn v1.3, (c) 2015 <louis@rubet.fr>";
2015-02-23 17:33:05 +01:00
// syntax
static const char* syntax[] = {
"Reverse Polish Notation language, based on hewlett-Packard RPL",
"Syntax: rpn [command]",
"with optional command = list of commands",
NULL
};
static const char prompt[] = ATTR_BOLD "rpn" ATTR_OFF "> ";