Thread: New Lang!

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User minime6696's Avatar
    Join Date
    Aug 2001
    Posts
    267

    Smile New Lang!

    I am makking a new language, and I would liek to know iff anyone here wants to help with import libz or anything, I dont know the name yet, might be 'cppapplet' becouse of hte mix between c++ syntax and BASIC/Java syntax. The code archetecture is a lot like C, but the variables are like VB, its like this:

    IMPORT ilang.dll'

    function _MAIN(cmdline)
    PRINTF s This is a demonstration!~'
    GETCH s NULL
    PRINTF s Here is the command line!~'
    PRINTF d cmdline
    PRINTF s ~Enter a string and I will repeat it: '
    VAR s String
    STRGET s String
    PRINTF s ~You Entered: '
    PRINTF d String
    GETCH s NULL
    }

    It may change over time, but this is what I have so far, its only been 2 days, so ive only just started with import libz, I had to get the interpreter and precompiler up and running first, "ilang.dll" includes Variables and console, each import lib for this language is a dll, you can also have multiple source files. Also everything declaired is global, and paramiters only exist as variables while the function is opened, but they too are global. If you're wondering what the 's' and 'd' mean, they let you be very elastic when it comes to variables. You can specify to use one variable with another, and the 'VAR' type is universal for anything, any type.

    So if you're interested in helping develope libz or learning it to try it email me or reply!

    SPH

    P.S. I am creating a C++ lbirary, prolly "cpplib.dll", that will let you paste C++ code into cppapplet with little trouble, a lib can do a lot in this, it can change syntax, pretty much anything.
    Last edited by minime6696; 08-25-2001 at 12:55 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Tip for a C lang Beginner
    By ph071 in forum C Programming
    Replies: 13
    Last Post: 12-06-2008, 01:42 AM
  2. Shadow of the beast lang
    By swgh in forum Game Programming
    Replies: 4
    Last Post: 09-21-2006, 05:17 AM
  3. HELP: which lang to learn for embedded device?
    By hkuser2001 in forum Networking/Device Communication
    Replies: 1
    Last Post: 04-08-2006, 12:11 AM
  4. isvowel() included in ctype for C lang?
    By nizbit in forum C Programming
    Replies: 30
    Last Post: 11-21-2004, 08:09 AM
  5. Common lang runtime debugging service giving me problems
    By datainjector in forum C# Programming
    Replies: 3
    Last Post: 08-04-2003, 06:03 AM