I am trying to develop a simple C style scripting language for educational purposes. 
Thing I have done so far:
- defined syntaxof the language
- written code for tokenizingthe language.
The features that I want to include at the moment:
- Arthematics
- Conditions
- while loop (only)
At the moment I don't want to add other features to the language, as it will make development procedure quite complex.
However, I don't know what are the next steps that are involved in developing a language. I have gone through many questions on SO but they weren't very specific in detail. Kindly guide me with this process.
 
     
     
     
    