Console
Amethyst comes with a print function that compiles to /tellraw @a which can take any number of arguments and concatenates them together with no spacing.
info
Colors and styling is not implemented but is a planned feature.
Examples
print("Hello world!");
// Hello world!
int x = 7;
print("Variable: ", x);
// Variable: 7