Closed dokutan closed 10 months ago
This fixes #341 by always using var.
var
The documentation says that def and var are identical, except for allowing mutation for variables declared with var, and as both have the same length, there is no benefit to def when golfing.
def
This fixes #341 by always using
var
.The documentation says that
def
andvar
are identical, except for allowing mutation for variables declared withvar
, and as both have the same length, there is no benefit todef
when golfing.