libpulsar
A modular compiler for the pulsar programming language
Loading...
Searching...
No Matches
type_prim.h
Go to the documentation of this file.
1// Copyright (C) 2023 Ethan Uppal. All rights reserved.
2
3#define PS_PRIM_TYPE_U8 UInt8
4#define PS_PRIM_TYPE_I8 Int8
5#define PS_PRIM_TYPE_U16 UInt16
6#define PS_PRIM_TYPE_I16 Int16
7#define PS_PRIM_TYPE_U32 UInt32
8#define PS_PRIM_TYPE_I32 Int32
9#define PS_PRIM_TYPE_U64 UInt64
10#define PS_PRIM_TYPE_I64 Int64
11#define PS_PRIM_TYPE_F32 Float32
12#define PS_PRIM_TYPE_F64 Float64
13#define PS_PRIM_TYPE_B Bool
14
15#define PS_PRIM_TYPE_UChar PS_PRIM_TYPE_U8
16#define PS_PRIM_TYPE_Char PS_PRIM_TYPE_I8