Sfoglia il codice sorgente

update REPL prompt

blueloveTH 2 anni fa
parent
commit
746d3db6fb
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/repl.cpp

+ 1 - 1
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");
     }