mirror of
https://github.com/Noratrieb/tsfun.git
synced 2026-01-14 08:35:04 +01:00
6 lines
149 B
TypeScript
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');
|