Post Reply 
At this point, if I were to vote for new features....
06-27-2017, 07:19 PM (This post was last modified: 06-28-2017 01:19 PM by compsystems.)
Post: #3
RE: At this point, if I were to vote for new features....
difference between := & =<


Possible error
Code:
m:=[1,2,3]; returns [1,2,3]
l:=m; returns [1,2,3]
m[1] =< 4; returns [4,2,3]
l; returns [1,2,3]  ? l should be [4,2,3]

Code:
m:=[1,2,3]; returns [1,2,3]
l:=m; returns [1,2,3]
m[1] := 4; returns [4,2,3]
l; returns [1,2,3] // ok

More info about (<=) cmd

http://www-fourier.ujf-grenoble.fr/~pari...ffectation

http://www-fourier.ujf-grenoble.fr/~pari...tml#htoc86
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: At this point, if I were to vote for new features.... - compsystems - 06-27-2017 07:19 PM



User(s) browsing this thread: 2 Guest(s)