<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<br>
<font size="+1"><font face="monospace">Hi guys,<br>
<br>
I ported printf from Squeak to Cuis. Zero dependencies. <br>
I change almost nothing.<br>
<br>
I did it mostly because i need to format numbers in the classic
way.<br>
For dates, currencies etc. <br>
<br>
The package is here: <br>
<a class="moz-txt-link-freetext" href="https://github.com/nmingotti/Cuis-Smalltalk-Printf.git">https://github.com/nmingotti/Cuis-Smalltalk-Printf.git</a><br>
<br>
----------- example <br>
Feature require: 'Printf'. <br>
<br>
'foo %d bar' printf: {123}. "=> 'foo 123 bar' "<br>
'foo %.5f bar' printf: {123.12}. "=> 'foo 123.12000 bar' "<br>
----------<br>
<br>
<br>
bye<br>
Nicola<br>
<br>
<br>
<br>
<br>
</font></font>
</body>
</html>