|
|
last edited 9 years ago by test1 |
1 2 3 4 | ||
Editor: gdr
Time: 2008/04/01 03:20:27 GMT-7 |
||
Note: |
added:
From gdr Tue Apr 1 03:20:27 -0700 2008
From: gdr
Date: Tue, 01 Apr 2008 03:20:27 -0700
Subject:
Message-ID: <20080401032027-0700@axiom-wiki.newsynthesis.org>
Status: open => fixed somewhere
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) |