mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
19 lines
245 B
V
19 lines
245 B
V
module big
|
|
|
|
pub const (
|
|
zero_int = Integer{
|
|
digits: []u32{len: 0}
|
|
signum: 0
|
|
is_const: true
|
|
}
|
|
one_int = Integer{
|
|
digits: [u32(1)]
|
|
signum: 1
|
|
is_const: true
|
|
}
|
|
two_int = Integer{
|
|
digits: [u32(2)]
|
|
signum: 1
|
|
is_const: true
|
|
}
|
|
)
|