We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6f8d0 commit 2fb08feCopy full SHA for 2fb08fe
doc/Language/quoting.pod6
@@ -207,10 +207,10 @@ brackets around the number, without any extra spaces:
207
Compared to C<42/10> and C<1+42i>, there's no division (or addition) operation
208
involved. This is useful for literals in routine signatures, for example:
209
210
- sub close-enough-τ (<355/113>) {
+ sub close-enough-π (<355/113>) {
211
say "Your π is close enough!"
212
}
213
- close-enough-τ 710/226; # Your π is close enough!
+ close-enough-π 710/226; # Your π is close enough!
214
215
# WRONG: can't do this, since it's a division operation
216
sub compilation-failure (355/113) {}
0 commit comments