log directives are used to print a line of information to the console. It can take an argument of String

`log

hello world!

` String a = "a"; ` int i = 10; now with argument `log a + i

now with a message literal ` log "a message "