Tuesday, September 9, 2008

AI programming language

I wonder if anyone has created a programming language that can create code based on simple commands.
For instance:

Input
I want a code that can add up all the numbers from 1 to 100.

Output

int output = 0;
for (i=1; i<=100; i++){
output=i+output;
}

There would have to be additional steps, but this would make basic coding very simple.
The issue would be to generate a good AI program to interpret the text and to suggest good examples.
Suggestive guessing has already been researched, for instance the 20 question game uses neural networks to guess what you are thinking. The users using this program expand the neural network the more it is used hence the guessing gets more accurate.

Room for thought, for now...

No comments: