# Simple Hello World %h = Hello %w = World info %h %w # Parsing strings into variables option fieldsep,@chr(32) parse "%h;%w",Hi Too info %h %w # Parsing strings into variables with a variable name -couldn't be easier, right?- %u = var1 %v = var2 parse "%"%u;"%"%v,Two words info %var1 %var2