10 lines
118 B
Plaintext
10 lines
118 B
Plaintext
device self = "db";
|
|
|
|
fn doStuff(x, y, z) {
|
|
let i = x + y + z;
|
|
};
|
|
|
|
let i = 25;
|
|
let j = i + 25;
|
|
|
|
doStuff(i, j, 100); |