tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
11
Task/Scope-modifiers/Tcl/scope-modifiers-2.tcl
Normal file
11
Task/Scope-modifiers/Tcl/scope-modifiers-2.tcl
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
oo::class create example {
|
||||
# Note that this is otherwise syntactically the same as a local variable
|
||||
variable objVar
|
||||
constructor {} {
|
||||
set objVar "This is an object variable"
|
||||
}
|
||||
method showOff {} {
|
||||
puts "variable objVar holds \"$objVar\""
|
||||
}
|
||||
}
|
||||
[example new] showOff
|
||||
Loading…
Add table
Add a link
Reference in a new issue