Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,2 @@
Transcript show: (7.125 printPaddedWith: $0 to: 3.6); cr.
"output: 007.125000"

View file

@ -0,0 +1,2 @@
(7.123 asFixedPoint:3) printOn: Transcript leftPaddedTo: 9 with: $0
"output: 00007.125"

View file

@ -0,0 +1 @@
PrintfScanf new printf:'%08.3f' arguments: { 7.125 }