1
1
mirror of https://github.com/idris-lang/Idris2.git synced 2025-01-09 01:12:28 +03:00
Idris2/tests/idris2/data/record002/input

10 lines
228 B
Plaintext
Raw Normal View History

grow testPerson
grow (grow testPerson)
cons 10 testPair
cons' 10 testPair
record { more.weight = 94 } testPerson
record { more.weight $= (+ 1) } testPerson
{ more.weight := 94 } testPerson
{ more.weight $= (+ 1) } testPerson
:q