```cpp using Type = int; ``` Like in C++, except this is actually a strong typedef ```chaiscript def fun(Type val) {} fun(42); // fails fun(Type(42)); // succeeds ```
Like in C++, except this is actually a strong typedef