Atoms script language
Atoms uses C/C++ as its script language. It uses Clang and LLVM JIT to compile the scripts on the fly.
Built-in classes that can be used in Atoms.
Math:
Strings:
Containers:
Atoms:
Built-in functions:
void info(const char* format, …); // Print a string to the info log
void info(const String& message); // Print a string to the info log
void warning(const char* format, …); // Print a string to the warning log
void warning(const String& message); // Print a string to the warning log
void error(const char* format, …); // Print a string to the error log
void error(const String& message); // Print a string to the error log
All function from cmath and cstdlib are exposed to the Atoms scripting.
Â
Â
Copyright © 2017, Toolchefs LTD.