You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ java2python
4
4
Simple but effective tool to translate Java source code into Python.
5
5
6
6
7
-
There are [lots of docs](./doc/index.md), [plenty of tests](./test), and [many options](./doc/customizations.md) for controlling code generation.
7
+
There are [lots of docs](./java2python/doc/index.md), [plenty of tests](././java2python/test/), and [many options](./java2python/doc/customizations.md) for controlling code generation.
8
8
9
-
I'm in the process of finalizing the documentation and packaging a release. That will be release 0.5 when it's done. If you're looking for old releases, check the [downloads](downloads) link above.
9
+
I'm in the process of finalizing the documentation and packaging a release. That will be release 0.5 when it's done. If you're looking for old releases, check the [downloads](./java2python/downloads) link above.
10
10
11
11
Hello, world example:
12
12
13
13
$ cat HelloWorld.java
14
-
// This is the HelloWorld class with it's single method.
14
+
// This is the HelloWorld class with a single method.
15
15
class HelloWorld {
16
16
public static void main(String[] args) {
17
17
System.out.println("Hello, world.");
@@ -23,7 +23,7 @@ Hello, world example:
23
23
""" generated source for module HelloWorld
24
24
25
25
"""
26
-
# This is the HelloWorld class with it's single method.
26
+
# This is the HelloWorld class with a single method.
0 commit comments