mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
111 B
V
12 lines
111 B
V
struct Zzz {
|
|
x int
|
|
}
|
|
|
|
fn (z Zzz) str(x int) string {
|
|
return 'z: $z.x'
|
|
}
|
|
|
|
fn main() {
|
|
println(Zzz{123})
|
|
}
|