Skip to content

Commit

Permalink
Merge pull request #332 from mryan/byte-type
Browse files Browse the repository at this point in the history
Add tests for type byte
  • Loading branch information
mryan committed Sep 25, 2017
2 parents 04b03b1 + 6c42b17 commit 7b3edb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S02-types/int-uint.t
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use Test;

# L<S09/Sized types/Sized low-level types are named most generally by appending the number of bits to a generic low-level type name>

my @inttypes = <1 2 4 8 16 32 64>.map({
|("int$_","uint$_")
}).grep: {
my @inttypes = <int uint> X~ <1 2 4 8 16 32 64>;
push @inttypes, "byte";
@inttypes .= grep: {
use MONKEY-SEE-NO-EVAL;
try EVAL "my $_ \$var = 1; \$var"
};
Expand Down

0 comments on commit 7b3edb2

Please sign in to comment.