Directives
Directives are resolved by the Amun Compiler at compile time and can give you a good information for example information about source code position
To get the current file path as a char array (string)
var path = #filepath;
To get the current line number in source code
var current_line_number = #line;
To get the current column number in source code
var current_column_number = #column;