fork download
  1. -- Single Line Comment, extend to the end of line
  2.  
  3. --Ada does not have Multiline Comments.
  4.  
  5. with Ada.Text_IO;
  6.  
  7. procedure Comment_Your_Code is
  8. use Ada.Text_IO;
  9. begin
  10. Put_Line ("You should comment your code.");
  11. end;
Success #stdin #stdout 0s 5052KB
stdin
Standard input is empty
stdout
You should comment your code.