Skip to content

Commit bfa6258

Browse files
committed
changed readme to correct file names
1 parent 6f66b07 commit bfa6258

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@ cd codex_py2cpp
2020
pip3 install -r requirements.txt
2121
```
2222
## Run example
23-
Reads the file "simplePythonScript.py", and feeds the corresponding input prompt to OpenAI Codex. Compilable solutions
23+
Reads the file "simpleScript.py", and feeds the corresponding input prompt to OpenAI Codex. Compilable solutions
2424
are stored in the form of .cpp and .exe files.
2525
```
2626
python3 python2cppconverter.py
2727
```
2828

2929
If the generated C++ code got compiled, test it with
3030
```
31-
./simplePythonScript.exe
31+
./simpleScript.exe
3232
```
3333
You hopefully get the same output as when running
3434
```
35-
python3 simplePythonScript.py
35+
python3 simpleScript.py
3636
```
3737
Check how much faster you are now ...
3838
```
39-
time ./simplePythonScript.exe
40-
time python3 simplePythonScript.py
39+
time ./simpleScript.exe
40+
time python3 simpleScript.py
4141
```
4242

4343
### Example Code Generation:

0 commit comments

Comments
 (0)