summaryrefslogtreecommitdiffhomepage
path: root/examples/simple.rb
diff options
context:
space:
mode:
authorTom Black <[email protected]>2015-11-12 01:31:59 -0500
committerTom Black <[email protected]>2015-11-12 01:31:59 -0500
commitdfe8e70159a3f2f47baceead173e55e9e29f91f7 (patch)
tree859be859d4cac6fc6d6a98148ae4091b260dbfee /examples/simple.rb
parent4de778f34dd64b9f9580c683c6cc468cb888ef7c (diff)
downloadruby2d-dfe8e70159a3f2f47baceead173e55e9e29f91f7.tar.gz
ruby2d-dfe8e70159a3f2f47baceead173e55e9e29f91f7.zip
Moving examples to separate repo
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