RosettaCodeData/Task/Classes/BQN/classes.bqn

14 lines
228 B
BQN
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

ExClass {
𝕊 value: # Constructor portion
priv value
priv2 0
ChangePriv { priv 𝕩 }
DispPriv {𝕊: •Show privpriv2 }
}
obj ExClass 5
obj.DispPriv@
obj.ChangePriv 6
obj.DispPriv@