Author: mark
Date: 2004-04-24 16:43:51 -0400 (Sat, 24 Apr 2004)
New Revision: 410
Modified:
trunk/pr/test.pr
trunk/src/console.c
Log:
minor cleanup
Modified: trunk/pr/test.pr
===================================================================
--- trunk/pr/test.pr 2004-04-24 20:17:31 UTC (rev 409)
+++ trunk/pr/test.pr 2004-04-24 20:43:51 UTC (rev 410)
@@ -1,4 +1,5 @@
#!/usr/bin/env prothon
+print 'should print h e l l o'
for i in "hello":
- print i
+ print i,
Modified: trunk/src/console.c
===================================================================
--- trunk/src/console.c 2004-04-24 20:17:31 UTC (rev 409)
+++ trunk/src/console.c 2004-04-24 20:43:51 UTC (rev 410)
@@ -193,7 +193,7 @@
Gl_histinit(histfile);
- printf( "Prothon %s Interactive Console, Build %s, %s (Ctrl-D to
exit)\n",
+ printf( "\nProthon %s Interactive Console, Build %s, %s (Ctrl-D to
exit)\n",
PROTHON_VERSION_NUMBER, numonly(PROTHON_VERSION_BUILD,
buf), PROTHON_VERSION_DATE );
src = pr_malloc(1);
while (TRUE) {
|