This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
taddeus
/
civicaml
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
f282d9b512
Branches
Tags
master
civicaml
/
test
/
array_scope.cvc
array_scope.cvc
88 B
Historique
Raw
1
2
3
4
5
6
extern void printInt(int val);
void foo(int[n] arr) {
printInt(n);
foo(arr);
}