git-subtree-dir: software/mza git-subtree-split: f970a59b177c13ca3dd8aaef8cc6681d83b7e813
11 lines
127 B
MiniZinc
11 lines
127 B
MiniZinc
|
|
constraint let {
|
|
array[int] of int: x = [1, 2, 3, 4]
|
|
} in (
|
|
length(x) = 4
|
|
);
|
|
|
|
solve satisfy;
|
|
|
|
output ["Ok"];
|