RosettaCodeData/Task/FASTA-format/PicoLisp/fasta-format.l
2023-07-01 13:44:08 -04:00

8 lines
192 B
Text

(de fasta (F)
(in F
(while (from ">")
(prin (line T) ": ")
(until (or (= ">" (peek)) (eof))
(prin (line T)) )
(prinl) ) ) )
(fasta "fasta.dat")