12 lines
No EOL
263 B
C
12 lines
No EOL
263 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(0, 23);
|
|
if (i <= 10) assert( i <= 12);
|
|
if (i < 0) assert(1 == 0);
|
|
} |