5 lines
72 B
Plaintext
5 lines
72 B
Plaintext
// 简单测试指针操作
|
|
x := 100;
|
|
ptr := &x;
|
|
*ptr = 200;
|
|
println(x); |