1. RE: sequence question
- Posted by Al Getz <Xaxo at aol.com> Feb 03, 2001
- 423 views
You can do stuff like that in C, not in Eu. Eu isnt that flexible. Also cant subscript a function call: k=GetValue()[1] but using an intermediate temporary variable always works: temp=GetValue() k=temp[1] Have fun with it! --Al