Please, how to fix this program?
----------------------------------------------- t.spad -------
)abbrev package FOO1 Foo1
Foo1() : with f : Integer -> Integer ==
add
f(n : Integer) : Integer ==
n = 0 => 0
1 + (g(n-1) $Foo2)
)abbrev package FOO2 Foo2
Foo2() : with g : Integer -> Integer ==
add
g(n : Integer) : Integer == 1 + (f(n-1) $Foo1)
--------------------------------------------------------------
Are there possible two packages which call each other?
Thanks,
------
Sergei
[email protected]
--
You received this message because you are subscribed to the Google Groups
"FriCAS - computer algebra system" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/fricas-devel?hl=en.