RosettaCodeData/Task/FASTA-format/EasyLang/fasta-format.easy
2026-02-01 16:33:20 -08:00

19 lines
282 B
Text

repeat
s$ = input
until s$ = ""
if substr s$ 1 1 = ">"
if stat = 1 : print ""
stat = 1
print s$
else
write s$
.
.
print ""
input_data
>Rosetta_Example_1
THERECANBENOSPACE
>Rosetta_Example_2
THERECANBESEVERAL
LINESBUTTHEYALLMUST
BECONCATENATED