Created
October 26, 2020 22:01
-
-
Save wvpv/f6148372877091d2b2fb568fa58ea68a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%[ | |
set @s = buildrowsetfromstring("Baby shark|Mommy shark|Daddy shark|Grandma shark|Grandpa shark|Let's go hunt|Run away|Safe at last|It's the end","|") | |
for @v=1 to 9 do | |
for @l=1 to 4 do | |
set @r = row(@s,@v) | |
set @f = field(@r,1) | |
outputline(v(@f),iif(@l<4,", doo doo doo doo doo doo","!")) | |
next | |
next | |
]%% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment