Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found this article about converting english sentences to Scheme, but can't seem to find any efforts to do the inverse (i.e. Scheme to english sentences): ftp://ftp.cs.utexas.edu/.snapshot/hourly.2/pub/AI-Lab/tech-reports/UT-AI-TR-87-48.pdf Plus, I don't think the article mentioned how to obtain even the code referred to.

Does anyone know of such a project, or am I going to have to try to roll my own?

I'd also be interested in such a translator for Java/Groovy and/or Ruby.

Basically, I would like to use a program that, given a string of code, outputs the algorithm in english sentences.

Edit: Actually, the article mentioned above does have its corresponding code at the bottom of it.

share|improve this question
I have never heard of anything like this. – Bailey S Feb 12 at 19:21
3  
i think you could do this with certain symbols (such as saying equals instead of =) but to make it grammatically accurate i think would be nearly impossible – Jeff Hawthorne Feb 12 at 19:23
1  
I wonder how you would describe something like nested for loops in English, without making a run-on sentence. – Bailey S Feb 12 at 19:43
3  
if you're real good, the code will read like english without a converter – AJcodez Feb 12 at 20:09
1  
You might be interested in literate programming . – BeniBela Feb 12 at 21:34
show 3 more comments

1 Answer

up vote 1 down vote accepted

You want a pseudocode converter. There are several pseudocode converters out there which will converter either pseudocode into programming language code or vice versa. Understand that these converters are far from perfect. But they should at least get you to a decent starting point.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.