diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-11-10 09:56:13 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-11-10 09:56:13 +0100 |
commit | d343fcb803e955504b0d6b5c9c852620886c2994 (patch) | |
tree | 0b60abd9a3c9036ccf45da491b10d7d64ce71321 /judge/morpion_rec.ml | |
parent | 5fecbfb6532487efc711eb1a9763535db720a291 (diff) | |
download | CompetIA-d343fcb803e955504b0d6b5c9c852620886c2994.tar.gz CompetIA-d343fcb803e955504b0d6b5c9c852620886c2994.zip |
RETAB!
Diffstat (limited to 'judge/morpion_rec.ml')
-rw-r--r-- | judge/morpion_rec.ml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/judge/morpion_rec.ml b/judge/morpion_rec.ml index 337116a..15af169 100644 --- a/judge/morpion_rec.ml +++ b/judge/morpion_rec.ml @@ -5,18 +5,18 @@ let ( |> ) x f = f x module Morpion_rec : sig - type game (* immutable structure *) + type game (* immutable structure *) - val name : string - val id : string + val name : string + val id : string - val new_game : game + val new_game : game val possibilities : game -> string list - val play : game -> player -> string -> game - val s : game -> game_status + val play : game -> player -> string -> game + val s : game -> game_status - val display_game : game -> (string * string) -> unit + val display_game : game -> (string * string) -> unit end = struct |