Jump to content

awesomegamer

Members
  • Posts

    527
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by awesomegamer

  1. I never worried much about interest, I collect an extra 4 or 6 helions every week. I really don't care. What is so hard about posting 25 times a month? Thats once a day minus Saturdays and one extended weekend. Going for the hosting plus? Four posts a day is worth the little effort.

  2. I made a c++ program which reads what the user types and kinda pseudo-compiles* it so that the user can input functions. I'm a noob to c++ and I had no idea how I was going to display graphs and functions based on an equation the user could type in (such as "y = x^2+3") for my graph program, so I made a text based interpreter with my own language*.

     

    It works kinda like this

     

    m,100,&A would "move" the value 100 to the variable A

    same as

    A = 100;

     

    +,&X,1,&X would add variable X and 1, store in X

    same as

    x++;

    or

    x+=1;

     

    I realized it's vaguely like asm, but I just set it up this way so I can prepare a command and then get the input.

     

    I even got working goto and label statements.

     

    I got if and else statements and comparisons kinda working but not done.

     

    Is anyone interested?

    demo, source?

     

    *I'm probably using the wrong terminology.

×
×
  • Create New...