Project

General

Profile

num_fmt.p

Alexei Kaigorodov, 06/18/2019 08:40 AM

Download (244 Bytes)

 
1

    
2
BLOCK-LEVEL ON ERROR UNDO, THROW.
3
define variable format as character no-undo.
4
define variable value as character no-undo.
5

    
6
do while true:
7
  import unformatted format.
8
  import unformatted value.
9
  put string(value, format) skip.
10
end.