Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -1,14 +0,0 @@
|
|||
with Ada.Text_Io; use Ada.Text_Io;
|
||||
|
||||
procedure Temp_File is
|
||||
Temp : File_Type;
|
||||
Contents : String(1..80);
|
||||
Length : Natural;
|
||||
begin
|
||||
-- Create a temporary file
|
||||
Create(File => Temp);
|
||||
Put_Line(File => Temp, Item => "Hello World");
|
||||
Reset(File => Temp, Mode => In_File);
|
||||
Get_Line(File => Temp, Item => Contents, Last => Length);
|
||||
Put_Line(Contents(1..Length));
|
||||
end Temp_File;
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
(make-temp-file "prefix")
|
||||
;; => "/tmp/prefix25452LPe"
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
$tempFile = [System.IO.Path]::GetTempFileName()
|
||||
Set-Content -Path $tempFile -Value "FileName = $tempFile"
|
||||
Get-Content -Path $tempFile
|
||||
Remove-Item -Path $tempFile
|
||||
Loading…
Add table
Add a link
Reference in a new issue