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
code esthetics for better readability
- Loading branch information
Showing
1 changed file
with
14 additions
and
14 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 |
|---|---|---|
| @@ -1,27 +1,27 @@ | ||
| my native int is repr('P6int') is Int { } | ||
| my native int1 is repr('P6int') is Int is nativesize(1) { } | ||
| my native int2 is repr('P6int') is Int is nativesize(2) { } | ||
| my native int4 is repr('P6int') is Int is nativesize(4) { } | ||
| my native int8 is repr('P6int') is Int is nativesize(8) { } | ||
| my native int is repr('P6int') is Int { } | ||
| my native int1 is repr('P6int') is Int is nativesize( 1) { } | ||
| my native int2 is repr('P6int') is Int is nativesize( 2) { } | ||
| my native int4 is repr('P6int') is Int is nativesize( 4) { } | ||
| my native int8 is repr('P6int') is Int is nativesize( 8) { } | ||
| my native int16 is repr('P6int') is Int is nativesize(16) { } | ||
| my native int32 is repr('P6int') is Int is nativesize(32) { } | ||
| my native int64 is repr('P6int') is Int is nativesize(64) { } | ||
|
|
||
| my native uint is repr('P6int') is Int is unsigned { } | ||
| my native uint1 is repr('P6int') is Int is nativesize(1) is unsigned { } | ||
| my native bit is repr('P6int') is Int is nativesize(1) is unsigned { } | ||
| my native uint2 is repr('P6int') is Int is nativesize(2) is unsigned { } | ||
| my native uint4 is repr('P6int') is Int is nativesize(4) is unsigned { } | ||
| my native uint8 is repr('P6int') is Int is nativesize(8) is unsigned { } | ||
| my native byte is repr('P6int') is Int is nativesize(8) is unsigned { } | ||
| my native uint is repr('P6int') is Int is unsigned { } | ||
| my native uint1 is repr('P6int') is Int is nativesize (1) is unsigned { } | ||
| my native bit is repr('P6int') is Int is nativesize( 1) is unsigned { } | ||
| my native uint2 is repr('P6int') is Int is nativesize( 2) is unsigned { } | ||
| my native uint4 is repr('P6int') is Int is nativesize( 4) is unsigned { } | ||
| my native uint8 is repr('P6int') is Int is nativesize( 8) is unsigned { } | ||
| my native byte is repr('P6int') is Int is nativesize( 8) is unsigned { } | ||
| my native uint16 is repr('P6int') is Int is nativesize(16) is unsigned { } | ||
| my native uint32 is repr('P6int') is Int is nativesize(32) is unsigned { } | ||
| my native uint64 is repr('P6int') is Int is nativesize(64) is unsigned { } | ||
|
|
||
| my native num is repr('P6num') is Num { } | ||
| my native num is repr('P6num') is Num { } | ||
| my native num32 is repr('P6num') is Num is nativesize(32) { } | ||
| my native num64 is repr('P6num') is Num is nativesize(64) { } | ||
|
|
||
| my native str is repr('P6str') is Str { } | ||
| my native str is repr('P6str') is Str { } | ||
|
|
||
| # vim: ft=perl6 expandtab sw=4 |