Is there a program that translates Scheme / Java / Ruby code into English sentences?

I found this article about converting English sentences to Scheme, but it seems that I cannot find any attempts to do the opposite (for example, schemes for English sentences): ftp://ftp.cs.utexas.edu/.snapshot/hourly.2/ pub / AI-Lab / tech-reports / UT-AI-TR-87-48.pdf Also, I don’t think the article mentions how to get even the code mentioned.

Does anyone know about such a project, or will I have to try to overturn it?

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

Basically, I would like to use a program that, given a line of code, outputs an algorithm in English sentences.

Edit: Actually, the article mentioned above has the corresponding code below.

+6
source share
1 answer

You want to convert pseudo code. There are several pseudo-code converters that convert either pseudo-code into programming language code, or vice versa. Understand that these converters are far from perfect. But they should at least give you a decent starting point.

+3
source

All Articles