fork(1) download
  1. | fn |
  2.  
  3. fn := [:str | str isEmpty ifTrue: [str] ifFalse: [str asNumber]].
  4.  
  5. (#('090' '0080' '123' '0' '000' '') collect: fn) display.
Success #stdin #stdout 0s 7928KB
stdin
Standard input is empty
stdout
(90 80 123 0 0 '' )