13 lines
199 B
C++
13 lines
199 B
C++
#pragma once
|
|
#include <inttypes.h>
|
|
|
|
#include <ker/string.hpp>
|
|
|
|
namespace trainscript
|
|
{
|
|
using Int = int32_t;
|
|
using Real = float;
|
|
using Void = void;
|
|
using Bool = bool;
|
|
using Text = ker::String;
|
|
}
|