##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: September, 2016 # Modified: 2016-10-03/22:50-0400 ##+ # # entab.icn, demonstrate spaces to tabs # procedure main() write("entab with stops at 4, 8, 12") s := repl(" ", 12) || "Three tabs in\n" || repl(" ", 8) || "Two tabs in\n" || " One tab in\nNo tabs" write(entab(s, 4,8,12)) end