tsfun/test/printf.test.ts
2022-07-14 21:01:20 +02:00

6 lines
149 B
TypeScript

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