initial commit

This commit is contained in:
root
2023-06-12 09:14:09 +02:00
commit b4912f303e
2545 changed files with 209350 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
// Berechnet die Fl<46>che des Kreises mit dem Radius r=argv[2]
// tm 97-11-20
proc main(...)
{
if (argc<3) exit(1);
datei = argv[0];
zelle = argv[1];
r = argv[2];
/* Fl<46>che berechnen */
wert = pi() * r * r;
/* R<>ckgabe des Ergebnisses */
Texel.ReturnCellValue(datei,zelle,wert);
}