8 lines
124 B
Factor
8 lines
124 B
Factor
|
USING: formatting ;
|
||
|
IN: tools.deploy.test.21
|
||
|
|
||
|
: formatting-test ( -- )
|
||
|
1 2 3 "%d %d %d" printf ;
|
||
|
|
||
|
MAIN: formatting-test
|