|
|
last edited 10 years ago by test1 |
1 2 3 4 | ||
Editor: test1
Time: 2014/05/13 17:20:50 GMT+0 |
||
Note: |
added:
From test1 Tue May 13 17:20:50 +0000 2014
From: test1
Date: Tue, 13 May 2014 17:20:50 +0000
Subject:
Message-ID: <20140513172050+0000@axiom-wiki.newsynthesis.org>
Status: fixed somewhere => closed
(1) -> f x == a := 3 x + a
f 3
Compiling function f with type PositiveInteger -> PositiveInteger
(1) |
g := x +-> (x+2 ; x+a)
(2) |
g 3
(3) |
are right functions.
But I can't use the function h. I get an error - h 3 : |a| is not of type list
h := x +-> (a := 3 ; x+a)
(4) |
h 3
(5) |