diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-14 12:27:21 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-14 12:27:21 +0100 |
| commit | 3b842ffe29b272ffeccb7fea30d86bca97cb2fce (patch) | |
| tree | 566e566688c1ed52cfa28142406d2e97d9460b2e | |
| parent | 6c0e2e2a53412b4d7ba8b2b3b9bd485af240589b (diff) | |
Remove semicolons
| -rw-r--r-- | core/builtin/builtin.odin | 164 |
1 files changed, 82 insertions, 82 deletions
diff --git a/core/builtin/builtin.odin b/core/builtin/builtin.odin index 259fdef37..d1cdfa6e7 100644 --- a/core/builtin/builtin.odin +++ b/core/builtin/builtin.odin @@ -1,90 +1,90 @@ // This is purely for documentation package builtin -nil :: nil; -false :: 0!=0; -true :: 0==0; - -ODIN_OS :: ODIN_OS; -ODIN_ARCH :: ODIN_ARCH; -ODIN_ENDIAN :: ODIN_ENDIAN; -ODIN_VENDOR :: ODIN_VENDOR; -ODIN_VERSION :: ODIN_VERSION; -ODIN_ROOT :: ODIN_ROOT; -ODIN_DEBUG :: ODIN_DEBUG; - -byte :: u8; // alias - -bool :: bool; -b8 :: b8; -b16 :: b16; -b32 :: b32; -b64 :: b64; - -i8 :: i8; -u8 :: u8; -i16 :: i16; -u16 :: u16; -i32 :: i32; -u32 :: u32; -i64 :: i64; -u64 :: u64; - -i128 :: i128; -u128 :: u128; - -rune :: rune; - -f16 :: f16; -f32 :: f32; -f64 :: f64; - -complex32 :: complex32; -complex64 :: complex64; -complex128 :: complex128; - -quaternion64 :: quaternion64; -quaternion128 :: quaternion128; -quaternion256 :: quaternion256; - -int :: int; -uint :: uint; -uintptr :: uintptr; - -rawptr :: rawptr; -string :: string; -cstring :: cstring; -any :: any; - -typeid :: typeid; +nil :: nil +false :: 0!=0 +true :: 0==0 + +ODIN_OS :: ODIN_OS +ODIN_ARCH :: ODIN_ARCH +ODIN_ENDIAN :: ODIN_ENDIAN +ODIN_VENDOR :: ODIN_VENDOR +ODIN_VERSION :: ODIN_VERSION +ODIN_ROOT :: ODIN_ROOT +ODIN_DEBUG :: ODIN_DEBUG + +byte :: u8 // alias + +bool :: bool +b8 :: b8 +b16 :: b16 +b32 :: b32 +b64 :: b64 + +i8 :: i8 +u8 :: u8 +i16 :: i16 +u16 :: u16 +i32 :: i32 +u32 :: u32 +i64 :: i64 +u64 :: u64 + +i128 :: i128 +u128 :: u128 + +rune :: rune + +f16 :: f16 +f32 :: f32 +f64 :: f64 + +complex32 :: complex32 +complex64 :: complex64 +complex128 :: complex128 + +quaternion64 :: quaternion64 +quaternion128 :: quaternion128 +quaternion256 :: quaternion256 + +int :: int +uint :: uint +uintptr :: uintptr + +rawptr :: rawptr +string :: string +cstring :: cstring +any :: any + +typeid :: typeid // Endian Specific Types -i16le :: i16le; -u16le :: u16le; -i32le :: i32le; -u32le :: u32le; -i64le :: i64le; -u64le :: u64le; -i128le :: i128le; -u128le :: u128le; - -i16be :: i16be; -u16be :: u16be; -i32be :: i32be; -u32be :: u32be; -i64be :: i64be; -u64be :: u64be; -i128be :: i128be; -u128be :: u128be; - - -f16le :: f16le; -f32le :: f32le; -f64le :: f64le; - -f16be :: f16be; -f32be :: f32be; -f64be :: f64be; +i16le :: i16le +u16le :: u16le +i32le :: i32le +u32le :: u32le +i64le :: i64le +u64le :: u64le +i128le :: i128le +u128le :: u128le + +i16be :: i16be +u16be :: u16be +i32be :: i32be +u32be :: u32be +i64be :: i64be +u64be :: u64be +i128be :: i128be +u128be :: u128be + + +f16le :: f16le +f32le :: f32le +f64le :: f64le + +f16be :: f16be +f32be :: f32be +f64be :: f64be |