Re: Oh no, I'm in over my head again
- Posted by "Darth Maul, aka Matt" <uglyfish87 at HOTMAIL.COM> Sep 08, 2000
- 417 views
Well, it would be kinda hard to implement in asm, Java can't do everything Euphoria can(if you're going to have graphics you'll have to give up file access), and I don't know Lisp, so Euphoria was the natural choice. Coding the token processing routines was especially easy because I down- loaded "FaIkon1313's" eval() routine. The function doesn't calculate the results of functions, but those should be evaluated before computeTokens() is called. Also, the variable naming scheme is reminiscent of PERL(a string might be called $str, and integer could be called %thisint), though somewhat differ- ent. Also, I'm afraid that given the number of times I've failed at creating a language, it's not going to be that impressive. However, unlike before, I'm splitting my work into several modules. Variable and token processing routines go in vars.e, function and procedure calling routines go into call.e, threads go into threads.e, and the basic functions go into basics.e.