mirror of
https://github.com/Noratrieb/tsfun.git
synced 2026-01-14 16:45:03 +01:00
printf
This commit is contained in:
parent
c5928e755b
commit
d1b843306d
7 changed files with 63 additions and 100 deletions
6
test/printf.test.ts
Normal file
6
test/printf.test.ts
Normal 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');
|
||||
Loading…
Add table
Add a link
Reference in a new issue