8 lines
75 B
Plaintext
8 lines
75 B
Plaintext
main() {
|
|
c := new(Counter)
|
|
c.value += 16
|
|
}
|
|
|
|
struct Counter {
|
|
value int
|
|
} |