RosettaCodeData/Task/Enforced-immutability/J/enforced-immutability-2.j
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
137 B
Text

C=: 'this is a test'
1 readonly_jmf_ 'C'
C =: 'some new value'
|read-only data
| C =:'some new value'
C
this is a test