Jump to content

Add a variable to a class instance at runtime: Difference between revisions

m
→‎{{header|Tcl}}: condense the requirements
No edit summary
m (→‎{{header|Tcl}}: condense the requirements)
Line 580:
 
=={{header|Tcl}}==
{{works with|Tcl|8.6}} or {{libheader|TclOO}}
<br>
{{works with|Tcl|8.5}} and the [http://wiki.tcl.tk/TclOO TclOO package]
 
The code below uses the fact that each object is implemented as a namespace, to add a ''time'' variable to an instance of ''summation'':
<lang Tcl>% oo::classpackage createrequire summation {TclOO
% oo::class create summation {
constructor {} {
variable v 0
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.