summaryrefslogtreecommitdiff
path: root/examples/graphics/raylib_demo.zc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graphics/raylib_demo.zc')
-rw-r--r--examples/graphics/raylib_demo.zc10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/graphics/raylib_demo.zc b/examples/graphics/raylib_demo.zc
index 77b661e..f0e4f57 100644
--- a/examples/graphics/raylib_demo.zc
+++ b/examples/graphics/raylib_demo.zc
@@ -8,11 +8,11 @@ fn main() {
raylib::SetTargetFPS(60);
- var x = 400;
- var y = 300;
- var dx = 5;
- var dy = 4;
- var radius = 30;
+ let x = 400;
+ let y = 300;
+ let dx = 5;
+ let dy = 4;
+ let radius = 30;
while !raylib::WindowShouldClose()
{