These docs are for v1.3.0. Click to read the latest docs for v1.6.

print_f

Prints formatted string.

Prints formatted string. It behaves similar to C printf/

Parameters

  • Arg - Type of the value used to replace the format specifier

  • Args - Type of the value used to replace the format specifier

Parameters

  • s - Null terminated string with to be printed (it can contains format specifier)

  • val - The value used to replace the format specifier

  • rest - The values used to replace the format specifier

Example:

print_f("Number of apples: %", 10);