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/fail/printf.test.ts Normal file
View file

@ -0,0 +1,6 @@
// bad
import { printf } from '../../src/printf';
printf('nice', 4);
printf('uwu %d', 'not a number');
printf('hello %d %s', 'hi', 5);