projects
/
cfuerst
/
formal-numbers.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da07e4a
)
Removed main
author
Christoph Fuerst
<ch.fuerst@gmx.at>
Tue, 21 Mar 2017 18:49:11 +0000
(19:49 +0100)
committer
Christoph Fuerst
<ch.fuerst@gmx.at>
Tue, 21 Mar 2017 18:49:11 +0000
(19:49 +0100)
numbertheory.txt
patch
|
blob
|
history
diff --git
a/numbertheory.txt
b/numbertheory.txt
index
db521a3
..
9cd4d16
100644
(file)
--- a/
numbertheory.txt
+++ b/
numbertheory.txt
@@
-100,29
+100,3
@@
proc xpowern(x:Base,n:Exp): Result
return res;
}
-proc main(): ()
-{
- var s:Base = 0;
- var t:Exp = 0;
-
- while s < N do
- {
- s=s+1;
- while t<N do
- {
- t = t+1;
- print s,t,xpowern(s,t);
- }
- }
-
-}
-
-
-
-
-
-
-
-
-
-