Yesterday, 03:17 PM
(This post was last modified: Yesterday, 03:18 PM by SpriggsySpriggs.)
Minimizing lines is good in only a couple of ways, for me:
You don't need two lines for that. The above crudely emulates how other languages allow you to assign a value during the definition.
Rather than:
Code: (Select All)
Dim As Long a: a = 5
You don't need two lines for that. The above crudely emulates how other languages allow you to assign a value during the definition.
Code: (Select All)
If thing = 1 Then DoThing()
Rather than:
Code: (Select All)
If thing = 1 Then
DoThing()
End If
The noticing will continue