Two things:
- Posted by Michael Sabal <mjs at OSA.ATT.NE.JP> Jan 24, 1999
- 564 views
[Irv's create and delete] Is there any reason you need to even create the fourth element? If = not, then you can avoid the whole deletion process by simply not adding = it in the first place. For example: atom elemCtr sequence dyn_list,... elemCtr =3D 1 dyn_list =3D {} ... if elemCtr !=3D n then dyn_list =3D ... else ... elemCtr =3D 0 end if elemCtr +=3D 1 -- assumes ver. 2.1 [Linux question] I've been pinpointing some of the seg faults in attempted ports of = Euphoria to Linux, and thinking of trying to add screen or graphics = functions. One problem: conio.h that I'm used to using in DOS doesn't = exist in Linux. And there's no information about screen or graphics = routines in the GCC manual at Sun's web site. I've looked at termios.h, = but it's mostly hardware data with no recognizable I/O routines. Does = anybody know any more about this? Michael J. Sabal mjs at osa.att.ne.jp http://home.att.ne.jp/gold/mjs/index.html