====== DECLARE ====== [pet] [vic20] [c64] [c16] [cplus4] [c128] [x16] [m65] The declare keyword forward-declares a subroutine or function. ===== Syntax ===== DECLARE SUB ([arg1 AS [, arg2 AS , ... ]]) [OVERRIDE] [STATIC] [SHARED] DECLARE FUNCTION AS ([arg1 AS [, arg2 AS , ... ]]) [OVERRIDE] [STATIC] [SHARED] Read more about forward declaration [[subroutines#forward_declaration|here]]. ===== See also ===== * [[FUNCTION]] * [[SUB]]