15 lines
243 B
Plaintext
15 lines
243 B
Plaintext
blop x = blop #SyntaxError
|
|
|
|
# afficher y; #UnknownVariable
|
|
|
|
# texte z;
|
|
# afficher z; #UninitializedVariable
|
|
|
|
# texte a;
|
|
# texte a; #AlreadyDefined
|
|
|
|
# entier b = "test"; #IncompatibleType
|
|
|
|
# liste c = [0, 1, 2];
|
|
# afficher c[10]; #IndexError
|