You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Putting spaces around / division operator breaks highlights
Example Code
# This block is OK, because 1/4 ain't got spaces between the operator and the numbersisa-ok(Rat.new(1,4), Rat, "Rat.new makes a Rat");
isa-ok(1/4, Rat, "/ makes a Rat");
isa-ok( 1.Int.Rat, Rat, "cast of Int makes a Rat");
isa-ok( 1.Num.Rat, Rat, "cast of Num makes a Rat");
# This one blows up because there are spaces between 1, /, and 4isa-ok(Rat.new(1,4), Rat, "Rat.new makes a Rat");
isa-ok(1/4, Rat, "/ makes a Rat");
isa-ok( 1.Int.Rat, Rat, "cast of Int makes a Rat");
isa-ok( 1.Num.Rat, Rat, "cast of Num makes a Rat");
Picture [optional]
Leave this in. For internal use.
Fixed in Master
Fixed in Release
Has Tests
Passes Tests
The text was updated successfully, but these errors were encountered:
Putting spaces around / division operator breaks highlights
Example Code
Picture [optional]
Leave this in. For internal use.
The text was updated successfully, but these errors were encountered: