This website works better with JavaScript
Inicio
Explorar
Axuda
Iniciar sesión
taddeus
/
civicaml
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Árbore:
7dd8ec8281
Ramas
Etiquetas
master
civicaml
/
test
/
basic
/
check_success
/
binops.cvc
binops.cvc
125 B
Histórico
Raw
1
2
3
4
5
6
7
8
void foo() {
int a;
int b = 2;
int c = 3 + 4;
int d = 5 * 6;
int e = 7 % 8;
int f = c + d - e * b;
}