12 lines
105 B
Plaintext
12 lines
105 B
Plaintext
unit okproj1;
|
|
|
|
struct Node {
|
|
value: i32,
|
|
}
|
|
|
|
fn touch(p: ?&mut Node) -> void {
|
|
p.?.value = 7;
|
|
}
|
|
|
|
|