Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
modules
/
consts_with_complex_init
/
config.v
13
lines
·
9
sloc
·
145 bytes
·
679bcb30946c9b80f4006faccc496f19e55d4b42
Raw
1
module
main
2
3
import
rand
4
5
struct
MyStruct {
6
foo int
7
}
8
9
const
my_struct = MyStruct{rand.intn(6)
or
{ panic(err) }}
10
11
fn
main() {
12
dump(
'hello'
)
13
}
14