Comment detail

条件を満たす行を取り除く (Nested Flatten)
Adaで適当に
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
with Ada.Text_Io;
procedure Exclude is
   Line:String:=Ada.Text_Io.Get_Line;
begin
   if Line(Line'First)/='#' then
      Ada.Text_Io.Put_Line(Line);
   end if;
   Exclude;
exception
   when Ada.Text_Io.End_Error=>return;
end Exclude;

Index

Feed

Other

Link

Pathtraq

loading...