Adapted to tell the user what language they were written in (because they're too similar!). Modified the Pascal implementation to work with our new syscall model.

This commit is contained in:
dtrg
2007-04-21 23:19:32 +00:00
parent f33fd63590
commit d48c81664f
5 changed files with 11 additions and 9 deletions

View File

@@ -59,7 +59,7 @@ void game(void)
int main(int argc, char* argv[])
{
printf("\nHi there! Before we start, what is your name?\n");
printf("\nHi there! I'm written in C. Before we start, what is your name?\n");
reads();
strcpy(PlayerName, buffer);
printf("\nHello, %s! ", PlayerName);