CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2001
    Location
    California, USA
    Posts
    54

    designing new script language

    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?
    -- Get to know your father. You may never know, Darth Vader he might be.

  2. #2
    Join Date
    Jul 2004
    Posts
    4

    try XML

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured