summaryrefslogtreecommitdiffhomepage
path: root/examples/simple.rb
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple.rb')
-rw-r--r--examples/simple.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/simple.rb b/examples/simple.rb
deleted file mode 100644
index ca8e99f..0000000
--- a/examples/simple.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require 'ruby2d'
-
-# Set the window size
-set width: 300, height: 200
-
-# Create a new shape
-s = Square.new
-
-# Give it some color
-s.color = 'red'
-
-# Show the window
-show