mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-29 22:36:05 +03:00
9 lines
120 B
Plaintext
9 lines
120 B
Plaintext
// Circuits are immutable by default.
|
|
circuit Circ {
|
|
x: u32
|
|
}
|
|
|
|
function main() {
|
|
let a = Circ { x: 1 };
|
|
a.x = 0;
|
|
} |