TalkCode

Why write the code when you can speak it?

A way to speak your code and let the computer give you the syntax. TalkCode is Python program which uses Speech Recognition to identify certain syntax and convert it into C++ code at a very beginner level.

What can you do with?

Use commands like:

  1. start : to begin your code
  2. initialize: to initialize a variable string/integer
  3. integer: to specify the integer data type
  4. string: to specify the string data type
  5. print: to print a string
  6. next : (important) to go to the next line and get the next command

Example:

start
i want to initialize a integer with 250               
next
i also want to initialize a string with hello world
next
print hello

Output would be :

include <iostream>
using namespace std;
int main()
{
int var1 = 250;
string var2 = " hello world";
cout <<"hello";
 }

Built With

Share this project:

Updates