import { printf } from '../src/printf'; printf('hello'); printf('hi %s', 'string'); printf('hello %d | %d', 1, 3); printf('%d %d %s', 4, 5, 'wow');