blob: 59b337a7f4d0c2a13d3a8728238ccd330563d52a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
struct str {
~uint8 a
}
/; method str
/; str_get() [~uint8]
return a
;/
;/
/; module moda
/; method str
/; str_set(~uint8 a)
self.a = a
;/
;/
;/
|