bl-compiler

compiler for the bl programming language.
Log | Files | Refs | README

type.hpp (110B)


      1 #pragma once
      2 
      3 enum struct Type {
      4     INT,
      5     CHAR,
      6     BOOL,
      7     STRING,
      8     FLOAT,
      9     DOUBLE,
     10     VOID,
     11 };