11 lines
No EOL
234 B
C
11 lines
No EOL
234 B
C
/*
|
|
* Cours "Sémantique et Application à la Vérification de programmes"
|
|
*
|
|
* Josselin Giet 2021
|
|
* Ecole normale supérieure, Paris, France / CNRS / INRIA
|
|
*/
|
|
|
|
void main(){
|
|
int i = rand(1, 3);
|
|
assert(i == 1 || i == 3); //@KO
|
|
} |