This commit is contained in:
seta75D
2021-10-11 18:37:13 -03:00
commit ff309bfe1c
14130 changed files with 3180272 additions and 0 deletions

18
games/hack/hack.version.c Normal file
View File

@@ -0,0 +1,18 @@
#ifndef lint
static char sccsid[] = "@(#)hack.version.c 1.1 94/10/31 SMI";
#endif
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* hack.version.c - version 1.0.2 */
#include "date.h"
doversion(){
pline("%s 1.0.2 - last edit %s.", (
#ifdef QUEST
"Quest"
#else
"Hack"
#endif QUEST
), datestring);
return(0);
}