Click to See Complete Forum and Search --> : designing new script language


phruby
July 14th, 2004, 10:41 AM
I'm designing a new scripting language for a system I'm developing in C#. Are there any .net lex/yacc packages out there that are a little easier to use than the old unix command line versions? Is there any commerical products that would make this easier?

Stevebob
July 15th, 2004, 04:45 PM
I'm not exactly sure what you're trying to do but...


if you're writing a scripting language to store things, go with XML since it's already built into .NET. If you're trying to create a Java kind of thing I think you should still use XML. That would make setting up an interface quite simple. Then just have like a <SCRIPT> tag or something for the code.