-
+ 1B937AA6DDF67962BAD9B8A29F1CE549D030F54F2F299719D91F029089F2A442B5BF317AEB1A0B495CE1B02B9E13D5A84266CCA8242A8CF8F789FEAE7E70384E
zfp/examples/helloworld/hello.adb
(0 . 0)(1 . 21)
96 ------------------------------------------------------------------------------
97 ------------------------------------------------------------------------------
98 -- You do not have, nor can you ever acquire the right to use, copy or --
99 -- distribute this software ; Should you use this software for any purpose, --
100 -- or copy and distribute it to anyone or in any manner, you are breaking --
101 -- the laws of whatever soi-disant jurisdiction, and you promise to --
102 -- continue doing so for the indefinite future. In any case, please --
103 -- always : read and understand any software ; verify any PGP signatures --
104 -- that you use - for any purpose. --
105 -- --
106 -- See also http://trilema.com/2015/a-new-software-licensing-paradigm . --
107 ------------------------------------------------------------------------------
108 ------------------------------------------------------------------------------
109
110 with Ada.Text_IO; use Ada.Text_IO;
111
112 procedure Hello is
113 begin
114 Put("Hello World");
115 New_Line;
116 end Hello;