Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gotta flatten parcel before subscripting, oopsie
  • Loading branch information
TimToady committed Sep 2, 2014
1 parent 83a5f52 commit bf4b469
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/Rational.pm
Expand Up @@ -104,7 +104,8 @@ my role Rational[::NuT, ::DeT] does Real {
}
}
$s ~= '.';
$s ~= (0..9,'A'..'Z')[@f].join;
state @digits = '0'..'9', 'A'..'Z';
$s ~= @digits[@f].join;
}
$s;
}
Expand Down

0 comments on commit bf4b469

Please sign in to comment.