RosettaCodeData/Task/Simple-windowed-application/LiveCode/simple-windowed-application.livecode

10 lines
195 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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