Skip to content

Commit

Permalink
Midwork through Tippy2
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBestPessimist committed Nov 7, 2023
1 parent a963189 commit cf76d80
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib/BB debug.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Persistent
b := BB()
b.a()

;bb.showV()

class BB
{
static v := 6

a()
{
this.showV()
}

showV()
{
Tooltip(this.v)
}
}

0 comments on commit cf76d80

Please sign in to comment.