List comprehensions: Difference between revisions

m
→‎horizontal list: changed a (title) comment.
(List comprehensions en FreeBASIC)
m (→‎horizontal list: changed a (title) comment.)
Line 2,104:
 
===horizontal list===
<lang rexx>/*REXX program displaysshows a verticalhorizontal list of Pythagorean triples up to a specified number. */
parse arg n . /*get the optional argument from the CL*/
if n=='' | n=="," then n= 100 /*Not specified? Then use the default.*/