v2 / vlib / v / tests / options / modules / mymod / mod.v
16 lines · 12 sloc · 301 bytes · 335357239a8fb51fcdc655c95f68cd53e07bbb30
Raw
1// mod.v
2
3module mymod
4
5import math.big
6
7pub struct BigintRange {
8pub mut:
9 start big.Integer
10 end big.Integer
11}
12
13pub const range = BigintRange{
14 start: big.integer_from_string('338288524927261089654018896841347694592')!
15 end: big.integer_from_string('338620831926207318622244848606417780735')!
16}
17