aboutsummaryrefslogtreecommitdiff
path: root/judge/morpion_rec.ml
diff options
context:
space:
mode:
Diffstat (limited to 'judge/morpion_rec.ml')
-rw-r--r--judge/morpion_rec.ml14
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