RosettaCodeData/Task/Loops-Foreach/BaCon/loops-foreach.bacon

9 lines
123 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
OPTION COLLAPSE TRUE
FOR x$ IN "Hello cruel world"
PRINT x$
NEXT
FOR y$ IN "1,2,\"3,4\",5" STEP ","
PRINT y$
NEXT