Re: centering display
- Posted by Senator May 25, 2020
- 1258 views
Thanks again, euphoric!
-- -- center_display.e -- include std/text.e include std/console.e public procedure center_display(sequence text, integer right_margin) display("[c:" & sprint(right_margin) & "]",{text}) end procedure -- test: center_display("This Text Is Centered",60)