home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Solo Programadores 22
/
SOLO_22.iso
/
docs
/
lovelace
/
make_hi.adb
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-03-14
|
194 b
|
12 lines
with Text_IO;
use Text_IO;
procedure Make_Hi is
New_File : File_Type;
begin
Create(New_File, Out_File, "hi");
Put_Line(New_file, "Hi, this is a test!");
Close(New_File);
end Make_Hi;