mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
272 B
TypeScript
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');
|