home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
games
/
volume15
/
xbomb
/
part03
/
debug_solver
< prev
next >
Wrap
Text File
|
1993-01-27
|
491b
|
25 lines
#!/usr/local/bin/perl
#
# debug solver
# just print out the map
#
# %W% (UCLA) %G%
#
# statistics is Copyright (C) 1992 by John Heidemann, Los Angeles, CA.
# All rights reserved. Permission is granted to freely distribute
# this as long as this copyright message is retained intact.
# Permission to distribute this as part of a commerical product
# requires explicit permission of the author.
$| = 1;
while (<STDIN>) {
print STDERR $_;
if (/^$/) {
print STDOUT "\n";
};
};
exit 0;