This commit is contained in:
nora 2022-07-14 21:01:20 +02:00
parent c5928e755b
commit d1b843306d
7 changed files with 63 additions and 100 deletions

6
test/printf.test.ts Normal file
View file

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