| Example DETAB.PRT |
; DETAB
;
; Program for Proteus
;
; (C) 1998-2004 Simone Zanella Productions
;
; Remove tabs using a column interval of 8.
FUNCTION ONSTART()
IF STREQ(ARGV(3), "..")
CONSOLELN "Syntax: " ARGV(1) " " ARGV(2) " source destination"
CONSOLELN ""
CONSOLELN "Purpose: remove tabs from source file"
ABORT 0
FI
RETURN
PRINTLN DETAB(L, 8)
| Samples index | Next example | Previous example | Contents | Index |