-- ReadGameLog.hs -- Tom Moertel -- CVS $Id: ReadGameLog.hs,v 1.2 2002/09/06 04:03:51 thor Exp $ -- | The ReadGameLog program reads a game log, as captured by RobotProxy, -- and reconstitutes it into a Game, which is then printed to standard -- output. module Main (main) where import Game main :: IO () main = getContents >>= putStrLn . show . readProxyLog -- ================================================================= -- -- Copyright (C) 2002 Thomas Moertel. -- -- This program is free software; you can redistribute it and/or -- modify it under the terms of the GNU General Public License -- as published by the Free Software Foundation; either version 2 -- of the License, or (at your option) any later version. -- -- The text of the GNU GPL may be found in the LICENSE file, -- included with this software, or online at the following URL: -- -- http://www.gnu.org/copyleft/gpl.html -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- Except as provided for under the terms of the GNU GPL, all rights -- are reserved worldwide. -- -- =================================================================