' Expanded Gift for VCCC 2024, in FastBasic - DMSC
' ------------------------------------------------

' Print the bow
? TAB(10) "\O/"
' And now the gift, 19 rows of 19 columns
FOR Y=0 TO 18
  FOR X=0 TO 18
    ' Print the correct character in each position
    ? " !-+"[1 + (X MOD 9 = 0) + 2 * (Y MOD 9 = 0), 1];
  NEXT
  ?
NEXT
