unison/unison-src/tests/tictactoe0-npe.u

18 lines
239 B
Plaintext
Raw Normal View History

-- board piece
2021-08-24 21:33:27 +03:00
structural type P = X | O | E
2021-08-24 21:33:27 +03:00
structural type Board = Board P P P P P P P P P
use Board Board
use P O X E
whatevs a b c = a
b = Board X O X O X X O E X
x = 1
y = 2
z = 3
ex = match b with
Board a b c d e f g h i -> a