Prints a formatted string to standard output.
1 2 3
printf("Hello, %s!\n", "world") // Hello, world! printf("Number: %g\n", 42) // Number: 42 printf("Boolean: %t\n", true) // Boolean: true
%s
%g
%t