You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
287 B
14 lines
287 B
// RESULT: 2/3
|
|
P=? [F s=3 ];
|
|
// RESULT: 1/6
|
|
P=? [F s=4 ];
|
|
// RESULT: 1/6
|
|
P=? [F s=2|s=5 ];
|
|
// RESULT: true
|
|
P>=1 [ G F s=3|s=4|s=5 ];
|
|
// RESULT: false
|
|
P>=1 [ G F s=3|s=4 ];
|
|
// RESULT: true
|
|
filter(first, P>=1 [ G F s=5 ], s=2);
|
|
// RESULT: 5/6 = 0.833333
|
|
P=? [ G F s=3|s=4 ];
|