Created
October 26, 2020 22:03
-
-
Save wvpv/3fea67118700e5d3c37d0d481c43c1a6 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 @l = 0 | |
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 36 do | |
set @m=mod(@v,4) | |
set @l=add(@l,iif(@m==1,1,0)) | |
set @r = row(@s,@l) | |
set @f = field(@r,1) | |
outputline(v(@f),iif(@m>0,", doo doo doo doo doo doo","!")) | |
next | |
]%% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment