I guess this is not correct !?
Type: Void
(1) -> L:=[1,2,3]
(1) [1, 2, 3]
Type:
List(PositiveInteger)
(2) -> remove!(1,L)
(2) [2, 3]
Type:
List(PositiveInteger)
(3) -> L
(3) [1, 2, 3]
Type:
List(PositiveInteger)
(4) -> remove!(3,L)
(4) [1, 2]
Type:
List(PositiveInteger)
(5) -> L
(5) [1, 2]
Type:
List(PositiveInteger)
(6) -> remove!(2,L)
(6) [1]
Type:
List(PositiveInteger)
(7) -> L
(7) [1]
Type:
List(PositiveInteger)
(8) -> remove!(1,L)
(8) []
Type:
List(PositiveInteger)
(9) -> L
(9) [1]
Type:
List(PositiveInteger)
(10) ->
--
You received this message because you are subscribed to the Google Groups
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/fricas-devel.
For more options, visit https://groups.google.com/d/optout.