Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
adding advent 2013 day 15
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| use v6; | ||
| use Test; | ||
| plan 30; | ||
|
|
||
| my $number-of-dwarfs = 7; | ||
| is $number-of-dwarfs.WHAT.gist, '(Int)', 'Int WHAT'; | ||
|
|
||
| is_deeply 0b1010, 10, 'binary'; | ||
| is_deeply 0b10, 2, 'binary' ; | ||
|
|
||
| is_deeply 0xA, 10, 'hex'; | ||
| is_deeply 0x10, 16, 'hex'; | ||
|
|
||
| is_deeply 0o644, 420, 'octal'; | ||
|
|
||
| is_deeply :3<120>, 15, 'radix'; | ||
| is_deeply :28<aaaargh>, 4997394433, 'radix'; | ||
| my $n = '42'; | ||
| is_deeply :5($n), 22, 'radix'; | ||
|
|
||
| is_deeply 0xCAFEBABE, 3405691582; | ||
| is 3405691582.base(16), 'CAFEBABE'; | ||
|
|
||
| my $tenth = 1/10; | ||
| is $tenth.WHAT.gist, '(Rat)', 'Rat WHAT'; | ||
|
|
||
| is (0, 1/10 ... 1).gist, '0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1', 'rational series'; | ||
| is ((1/3 + 1/6) * 2).gist, '1'; | ||
| is (1/10 + 1/10 + 1/10 == 0.3).gist, 'True', '(\o/)'; | ||
|
|
||
| my $pi = 3.14e0; | ||
| my $earth-mass = 5.97e24; # kg | ||
| is $earth-mass.WHAT.gist, '(Num)'; | ||
|
|
||
| is_approx (0, 1e-1 ... 1)[11], 1.1, 'missed the 1'; | ||
| #?rakudo.jvm todo "jvm rounding quirks" | ||
| is (0, 1e-1 ... * >= 1).gist, '0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 1.1', '(oops)'; | ||
| is (1e0/10 + 1/10 + 1/10 == 0.3).gist, 'False', '(awww!)'; | ||
|
|
||
| #?Rakudoc.jvm todo "list of numbers" | ||
| #?rakudo.moar todo "list of numbers" | ||
| #?rakudo.parrot todo "list of numbers" | ||
| { | ||
| my @numbers = <1 2.0 3e0>; | ||
| isa_ok @numbers[0], Int; | ||
| isa_ok @numbers[1], Rat; | ||
| isa_ok @numbers[2], Num; | ||
| } | ||
|
|
||
| is (i * i).gist, '-1+0i', 'complex number'; | ||
| is_approx e ** (i * pi) + 1, 0, 'complex equation'; | ||
|
|
||
| my $googol = EVAL( "1" ~ "0" x 100 ); | ||
| is $googol.gist, '1' ~ '0' x 100, 'googol'; | ||
| is $googol.WHAT.gist, '(Int)'; | ||
|
|
||
| is Inf.gist, 'Inf'; | ||
| is Inf.WHAT.gist, '(Num)'; | ||
| is (Inf > $googol).gist, 'True', 'Inf > $googol'; | ||
| my $max = -Inf; | ||
| $max max= 5; # (max= means "store only if greater") | ||
| is_deeply $max, 5, 'max'; # 5 |