summaryrefslogtreecommitdiffhomepage
path: root/gdscript.html.markdown
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-03 02:30:27 -0700
committerGitHub <noreply@github.com>2024-04-03 02:30:27 -0700
commit6d87022050ffbd5d818781427329c5362e3df197 (patch)
tree3809b2b1a7790d8b30e6d694c575eb68f02f661c /gdscript.html.markdown
parentc76b8f690a577d9ff89947d79c36a96a7c3b4deb (diff)
parente8dabf3c1955e1a458e8bc936587ad59772a9c33 (diff)
Merge branch 'master' into patch-1
Diffstat (limited to 'gdscript.html.markdown')
-rw-r--r--gdscript.html.markdown7
1 files changed, 5 insertions, 2 deletions
diff --git a/gdscript.html.markdown b/gdscript.html.markdown
index 25af0974..0bfac26a 100644
--- a/gdscript.html.markdown
+++ b/gdscript.html.markdown
@@ -95,7 +95,7 @@ func doing_math():
func control_flow():
x = 8
y = 2 # y was originally a float,
- # but we can change it's type to int
+ # but we can change its type to int
# using the power of dynamic typing!
if x < y:
@@ -114,6 +114,9 @@ func control_flow():
for i in range(20): # GDScript's range is similar to Python's
print(i) # so this will print numbers from 0 to 19
+ for i in 20: # unlike Python, you can loop over an int directly
+ print(i) # so this will also print numbers from 0 to 19
+
for i in ["two", 3, 1.0]: # iterating over an array
print(i)
@@ -319,4 +322,4 @@ signal example(arg: int) # ERROR! Signals can't take typed arguments!
* [NodePath](https://docs.godotengine.org/en/stable/classes/class_nodepath.html)
* [Signals](https://docs.godotengine.org/en/stable/getting_started/step_by_step/signals.html)
* [GDQuest](https://www.gdquest.com/)
-* [GDScript.com](https://gdscript.com/) \ No newline at end of file
+* [GDScript.com](https://gdscript.com/)