17 lines
223 B
Plaintext
17 lines
223 B
Plaintext
import to_import: a,b
|
|
|
|
obj Something (ObjectTrait) {
|
|
var member: int
|
|
fun method():int {
|
|
return 5
|
|
}
|
|
}
|
|
|
|
fun some_function(): float {
|
|
return 0
|
|
}
|
|
fun some_other_function(in: bool): int {
|
|
return 0
|
|
}
|
|
|