10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
FUNC INT f(a) {
|
|
IF a THEN RETURN 0
|
|
ELSE RETURN f(a-1)
|
|
FI
|
|
}
|
|
|
|
FUNC INT main(){
|
|
PRINT "La fonction f n est pas declaree avant sa premiere utilisation"
|
|
RETURN f(5)
|
|
} |