diff options
-rw-r--r-- | lua.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.2 1997/10/06 14:51:32 roberto Exp roberto $ |
3 | ** Lua stand-alone interpreter | 3 | ** Lua stand-alone interpreter |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -52,7 +52,7 @@ int main (int argc, char *argv[]) | |||
52 | lua_iolibopen(); | 52 | lua_iolibopen(); |
53 | lua_strlibopen(); | 53 | lua_strlibopen(); |
54 | lua_mathlibopen(); | 54 | lua_mathlibopen(); |
55 | lua_pushstring("Lua> "); lua_setglobal("_PROMPT"); | 55 | lua_pushstring("> "); lua_setglobal("_PROMPT"); |
56 | if (argc < 2) { | 56 | if (argc < 2) { |
57 | printf("%s %s\n", LUA_VERSION, LUA_COPYRIGHT); | 57 | printf("%s %s\n", LUA_VERSION, LUA_COPYRIGHT); |
58 | manual_input(); | 58 | manual_input(); |