14 lines
302 B
Plaintext
14 lines
302 B
Plaintext
import "../dep"
|
|
|
|
|
|
Box :: struct {
|
|
_value i32
|
|
}
|
|
|
|
from_b func(_input i32) i32 {
|
|
_local Box := Box { _value = _input }
|
|
record _C_Record := _C_Record { value = 0 }
|
|
thing Thing := Thing { value = value }
|
|
return helper() + thing.value + _local._value + _foreign() + i32(record.value) + dep._visible()
|
|
}
|