Simple windowed application: Difference between revisions

Content added Content deleted
Line 1,984: Line 1,984:


end</lang>
end</lang>


=={{header|LiveCode}}==
<lang LiveCode>
global count
on openCard
put empty into count
put "There have been no clicks yet" into field "clicks"
end openCard
on mouseUp
add 1 to count
put count into field "clicks"
end mouseUp
</lang>


=={{header|Logo}}==
=={{header|Logo}}==