This website works better with JavaScript
Home
Explore
Help
Sign In
taddeus
/
civicaml
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
098b5ebc19
Branches
Tags
master
civicaml
/
manual_test
/
array_assign.cvc
array_assign.cvc
63 B
History
Raw
1
2
3
4
5
6
void foo() {
int[4] a;
a = [1, 2, 3];
a[0] = 1;
}