We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0efe50c commit 0ff5434Copy full SHA for 0ff5434
README.md
@@ -18,7 +18,7 @@ class Test():
18
def display(self):
19
return "Hi, " + self.name
20
21
- def random\_number(self, start, end):
+ def random_number(self, start, end):
22
return random.randint(start, end)
23
```
24
@@ -27,7 +27,7 @@ You can use it from C# like this
27
28
```csharp
29
var engine = Python.CreateEngine ();
30
-ICollection\<string\> searchPaths = engine.GetSearchPaths ();
+ICollection<string> searchPaths = engine.GetSearchPaths ();
31
32
//Path to the folder of greeter.py
33
searchPaths.Add (Application.dataPath);
0 commit comments