mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-14 22:02:07 +03:00
10 lines
101 B
Idris
10 lines
101 B
Idris
record R where
|
|
constructor MkR
|
|
field : Nat
|
|
|
|
myRec1 : R
|
|
myRec1 = MkR 3
|
|
|
|
mkRec2 : R
|
|
myRec2 = MkR 3
|