Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvpv/19696e5be358c858507bc5a1f0ec2921 to your computer and use it in GitHub Desktop.
Save wvpv/19696e5be358c858507bc5a1f0ec2921 to your computer and use it in GitHub Desktop.
%%[
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","|")
set @d=", doo doo doo doo doo doo"
set @n=char(10)
for @v=1 to 9 do
set @r = row(@s,@v)
set @f = field(@r,1)
outputline(concat(@f,@d,@n,@f,@d,@n,@f,@d,@n,@f,"!"))
next
]%%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment