DefinitelyTyped/types/printf/printf-tests.ts
2017-03-24 14:27:52 -07:00

10 lines
272 B
TypeScript

import printf = require("printf");
printf('%c', 0x7f).charCodeAt(0);
printf('%2$s: %1$O', {hello: 'Node'}, 'Test');
printf('%(temperature)s %(crevace)ss', {
temperature: 'Hot',
crevace: 'Pocket',
});
printf(process.stdout, '%2$s: %1$O', {hello: 'Node'}, 'Test');