Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
$ include "seed7_05.s7i";
|
||||
include "float.s7i";
|
||||
include "math.s7i";
|
||||
|
||||
const proc: main is func
|
||||
local
|
||||
const array float: numbers is [] (1.0, 2.0, 3.0, 1.0e11);
|
||||
var float: aFloat is 0.0;
|
||||
var file: aFile is STD_NULL;
|
||||
begin
|
||||
aFile := open("filename", "w");
|
||||
for aFloat range numbers do
|
||||
writeln(aFile, aFloat sci 3 exp 2 <& " " <& sqrt(aFloat) sci 5 exp 2);
|
||||
end for;
|
||||
close(aFile);
|
||||
end func;
|
||||
Loading…
Add table
Add a link
Reference in a new issue