Open JohnCoene opened 1 month ago
We actually need to generate default values for given types in places.
type user: object { id: int, name: char } let u: user = user() # this will fail in R u$id + 1
u$id will fail currently as it's technically not instantiated and thus NULL
u$id
NULL
We actually need to generate default values for given types in places.
u$id
will fail currently as it's technically not instantiated and thusNULL