summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJummit <jummit@web.de>2020-12-19 18:40:15 +0100
committerGitHub <noreply@github.com>2020-12-19 18:40:15 +0100
commitecf0948f3550c272c098235ba860914a4f65c881 (patch)
tree1f3fef57e074d0dedc061f48903b12d3a1a93614 /README.md
parent43828ebb3931b9117ad57f08cc457e052fdfd631 (diff)
downloadredot-cpp-ecf0948f3550c272c098235ba860914a4f65c881.tar.gz
Remove semicolons from GDScript example
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e960be6..301add9 100644
--- a/README.md
+++ b/README.md
@@ -292,8 +292,8 @@ platform-independent manner.
Once your GDNative library is compiled and referenced in a `.gdns` file, you can use it in GDScript or C#. Here's an example with GDScript:
```gdscript
-var simpleclass = load("res://simpleclass.gdns").new();
-simpleclass.method("Test argument");
+var simpleclass = load("res://simpleclass.gdns").new()
+simpleclass.method("Test argument")
```
### Using Godot classes in C++