25 lines
470 B
Factor
25 lines
470 B
Factor
|
IN: triangle-beer-league.entities
|
||
|
|
||
|
TUPLE: team
|
||
|
id color ;
|
||
|
|
||
|
TUPLE: team-schedule
|
||
|
start home away ;
|
||
|
|
||
|
TUPLE: schedule
|
||
|
start away home ;
|
||
|
|
||
|
CONSTANT: teams
|
||
|
{
|
||
|
T{ team f 25475 "maroon" }
|
||
|
T{ team f 25476 "white" }
|
||
|
T{ team f 25469 "blue" }
|
||
|
T{ team f 25475 "teal" }
|
||
|
T{ team f 25471 "green" }
|
||
|
T{ team f 25472 "yellow" }
|
||
|
T{ team f 25473 "light-blue" }
|
||
|
T{ team f 25470 "red" }
|
||
|
T{ team f 25477 "orange" }
|
||
|
T{ team f 25474 "black" }
|
||
|
}
|