You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- declare a Person recorddataPerson=Person{name::String, age::Integer}
p =Person {name ="John", age =12}
-- update a Person record
p1 = p {name ="Miles", age =20}
-- getters
name = p1.name ::String
age = p1.age ::Integer
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: