RosettaCodeData/Task/FASTA-format/EasyLang/fasta-format.easy
2024-03-06 22:25:12 -08:00

20 lines
288 B
Text

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