Pike - An open Source Interpreted Programming Language (In C)
Developed in Sweden, this is very much an ongoing development with over 200 lines of code added in the last week. This what pike looks like:
int main()
{
write("Hi there! What's your name?\n") ;
string name = Stdio.stdin->gets() ;
write("Nice to meet you, " + name + "!\n") ;
return 0;
}
What makes it different is that it's interpreted. You can type in a statement and have it execute (if meaningful) immediately. As well as the documentation on their site you can also find some examples of Pike in PLEAC (Programming Language Examples Alike Cookbook).
- Link to C Code Library
- Link to About Compilers and Interpreters article


No comments yet. Leave a Comment