RE: Back to Bach
- Posted by gertie at visionsix.com Feb 20, 2003
- 487 views
On 19 Feb 2003, at 21:30, kbochert at copper.net wrote: <snip> > Can you point me to an address for mirc? http://www.mirc.com/ The mirror sites are listed there too. The irc-oriented commands are listed at: http://www.mirc.com/cmds.html > Here are some features of my vaporware: > > 1) Datatypes: > var (object) > int (integer) -- 32-bit, suitable for pointers > real (atom) > list (sequence) > string > class Multiple inheritances and descendants? > dictionary -- probably not at first A Lua thing? Or like a Pascal record? > block?? -- a block of memory for interfacing with C Block allocations can be handy, so can pointers. I useto drop a pointer on top of video memeory, on top of the keybd buffer, onto the ems page, etc, in dos, in the olden days. An array of char and an array of byte at the same place saved typecasting back and forth. An array of char on top of a string type gave me easy indexing. It shouldn't be necessary to do these things, but like "goto", they can be handy at times. Kat