Closed DavisVaughan closed 1 week ago
# Input fn( one, two = { } ) fn( one, two = function() { } )
Where did two go in the second example?
two
# Output fn(one, two = { }) fn(one, function() { })
Where did
two
go in the second example?