Untitled
unknown
plain_text
4 years ago
213 B
9
Indexable
{-# LANGUAGE GADTs, RecordWildCards #-} module RU where f x = x {myField = 3} g MyRecord {..} = MyRecord {myField = 3} data MyRecord where MyRecord :: (Num a) => { myField :: a } -> MyRecord
Editor is loading...