Skat Engine und AI auf Haskell Basis
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- module Render where
-
- import Card
- import Data.List
-
- render :: [Card] -> IO ()
- render = putStrLn . intercalate "\n" . zipWith (\n c -> show n ++ ") " ++ show c) [0..]
|