From 080e2727be1906a23273ea19979f17c059d8ea07 Mon Sep 17 00:00:00 2001
From: Daniel Kang <me@daniel.gs>
Date: Fri, 11 Jan 2019 01:25:38 -0800
Subject: [PATCH] minor update in repl output message

---
 cmd/repl/main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/repl/main.go b/cmd/repl/main.go
index 95b20b8..aa47eb6 100644
--- a/cmd/repl/main.go
+++ b/cmd/repl/main.go
@@ -25,7 +25,7 @@ func main() {
 		panic(err)
 	}
 
-	fmt.Printf("Hello, %s! This is the Ghost programming language!\n", currentUser.Name)
+	fmt.Printf("Hello, %s! Welcome to the Tengo Language!\n", currentUser.Name)
 
 	startRepl(os.Stdin, os.Stdout)
 }