Please enable JavaScript in your browser!
Domů
Procházet
Nápověda
Přihlásit se
someonewithpc
/
russell
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
df24653780
Větve
Značky
instructions
master
russell
/
examples
/
variables_attributions_1.txt
variables_attributions_1.txt
212 B
Historie
Surový
1
2
3
4
5
6
7
8
9
10
11
12
fn main () {
let x = 1;
let _foo = if x == 5 {
42
}
else if x == 6 {
1337
}
else {
31337
};
}