Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
8
Task/String-comparison/Raku/string-comparison-2.raku
Normal file
8
Task/String-comparison/Raku/string-comparison-2.raku
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
say "\c[KELVIN SIGN]".uniname;
|
||||
# => LATIN CAPITAL LETTER K
|
||||
|
||||
my $kelvin = "\c[KELVIN SIGN]";
|
||||
my $k = "\c[LATIN CAPITAL LETTER K]";
|
||||
say ($kelvin eq $k); # True, lexically equal
|
||||
say ($kelvin eqv $k); # True, generically equal
|
||||
say ($kelvin === $k); # True, identical objects
|
||||
Loading…
Add table
Add a link
Reference in a new issue