Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Demolishun34492226dI am disappointed in the picture of your screen... I thought we were better than this?
-
AlgoRythm50820226dIt has a GC? Or everything is stack allocated for now?
...... or there perhaps is no memory management? -
Demolishun34492226d@fumey learn to program first if you don't know how.
https://cs50.harvard.edu/x
This guy does a complete series on compilers and shows how to make one that compiles and runs code on .Net:
https://youtube.com/watch/...
I started watching this and kind of lost interest part way through. Here is a compiler book you can download:
https://iitd-plos.github.io/col729/... -
retoor11395226d@fumey craftinginterpreters.com / https://buildyourownlisp.com
The second one learns you basics as well.
I miss a stdlib in my language. Without access to files / sockets you can't do anything useful with it -
KDSBest775226dLexer/Tokenizer = Syntax error check and gets tokens
Parser = creates AST Tree
Basicly done.
The algo of parsing a formula with correct predence is funny IMHO.
this.var + 2 * (this.var2 + 4) for example.
I have a C# Implementation for a full compiler with VM and such in my open source MMORPG, which fully works and IIRC I have a youtube video that explains it, but not sure about that anymore.
https://github.com/KDSBest/... -
Ranchonyx10617226dWhat are the constructor semantics? I see you instantiate the class, is there a way to define a constructor?
-
retoor11395225d@KDSBest if (lowerToken[i] != '_' && lowerToken[i] != 'a' && lowerToken[i] != 'b' && lowerToken[i] != 'c' &&
lowerToken[i] != 'd' && lowerToken[i] != 'e' && lowerToken[i] != 'f' && lowerToken[i] != 'g' &&
lowerToken[i] != 'h' && lowerToken[i] != 'i' && lowerToken[i] != 'j' && lowerToken[i] != 'k' &&
lowerToken[i] != 'l' && lowerToken[i] != 'm' && lowerToken[i] != 'n' && lowerToken[i] != 'o' &&
lowerToken[i] != 'p' && lowerToken[i] != 'q' && lowerToken[i] != 'r' && lowerToken[i] != 's' &&
lowerToken[i] != 't' && lowerToken[i] != 'u' && lowerToken[i] != 'v' && lowerToken[i] != 'w' &&
lowerToken[i] != 'x' && lowerToken[i] != 'y' && lowerToken[i] != 'z' && !
Hahaha, I can't stop laughing -
retoor11395225d@KDSBest rest of code is cool stuff. I should publish my source since it's different than any others you find online. Mine is a parser and interpreter at once. No ast
-
donkulator2812225d@retoor I haven't started laughing yet, I'm still staring at it and it's starting to stare back at me.
Related Rants
Wrote a language using C in a few days that can execute this:
If you have the base correct, it gets boring.
I spend a lot of time in research to write smth like this
random
retoorscript
interpreter
oo