Is it possible to create my own language?? I am very new to this but I would also like to know if it is possible to create my own programming language.
Yeah its relatively easy depending on how much functionality you want. Every thing you want to do like looping, iterating, adding, subtracting, creating variables of different types will need to be coded in by you. Additionally you will need a lexer, parser, interpreter and debugger. You not only have to write the code for your language but also the code required to run it.