mirror of
https://github.com/Noratrieb/tsfun.git
synced 2026-01-14 08:35:04 +01:00
6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
// bad
|
|
import { printf } from '../../src/printf';
|
|
|
|
printf('nice', 4);
|
|
printf('uwu %d', 'not a number');
|
|
printf('hello %d %s', 'hi', 5);
|