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