Skip to content

Commit

Permalink
Merge pull request #268 from Typee-Language/dev
Browse files Browse the repository at this point in the history
#267-Modify / Correct Typee built-in code
  • Loading branch information
PhHays committed Sep 27, 2019
2 parents 77394c3 + 4d21fb0 commit cb0b836
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/Libs/types.ty
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ SOFTWARE.
// Built-in Types Aliases

type int8 as byte ;
type uint8 as ubyte ;
type int16 as short ;
type uint16 as ushort ;
type int32 as int ;
type uint32 as uint ;
type int64 as long ;

type uint8 as ubyte ;
type uint16 as ushort ;
type uint32 as uint ;
type uint64 as ulong ;

type float32 as float ;
type float64 as double ;

Expand Down

0 comments on commit cb0b836

Please sign in to comment.