Console
Amethyst comes with a print functions 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 it is a planned feature.
Examples
print("Hello world!");
// Hello world!
int x = 7;
print("Variable: ", x);
// Variable: 7