about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xawk/forth/f.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/awk/forth/f.awk b/awk/forth/f.awk
index 380563d..4675925 100755
--- a/awk/forth/f.awk
+++ b/awk/forth/f.awk
@@ -42,7 +42,7 @@ BEGIN {
 }
 
 function repl() {
-    print "Welcome to the f.awk, a naive forth interpreter.\nUse 'bye' to exit.\nUse 'words' to list all available words.\n"
+    print "f.awk! A forth interpreter.\nUse 'bye' to exit.\nUse 'words' to list all available words.\n"
     while (1) {
         printf "f> "
         if (getline input < "/dev/tty" <= 0) break