From 746d3db6fb123fc391e7adfdcac421dac366377b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Tue, 23 Jan 2024 13:48:40 +0800 Subject: [PATCH] update REPL prompt --- src/repl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repl.cpp b/src/repl.cpp index da66c21d..54291194 100644 --- a/src/repl.cpp +++ b/src/repl.cpp @@ -4,7 +4,7 @@ namespace pkpy { REPL::REPL(VM* vm) : vm(vm){ vm->stdout_write("pocketpy " PK_VERSION " (" __DATE__ ", " __TIME__ ") "); vm->stdout_write(fmt("[", sizeof(void*)*8, " bit] on ", kPlatformStrings[PK_SYS_PLATFORM], "\n")); - vm->stdout_write("https://github.com/blueloveTH/pocketpy" "\n"); + vm->stdout_write("https://github.com/pocketpy/pocketpy" "\n"); vm->stdout_write("Type \"exit()\" to exit." "\n"); }