console.log(new Date().toISOString(), "hello world");
Output
2021-04-11T20:55:07.451Z hello world
package main import "log" func main() { log.Println("hello world") }
2021/04/11 13:55:07 hello world
← printing variables→