aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoel Welsh <noel@Noels-MacBook-Pro.local>2016-05-24 14:59:33 +0100
committerNoel Welsh <noel@Noels-MacBook-Pro.local>2016-05-24 14:59:33 +0100
commit86e05110cc652c7c729672f58655a8e8585b072d (patch)
treead68ace5a94f3719389966504bd228fd2871791c /src
parentcd2fdddcf2bc76c91112ad8238463ba597d98814 (diff)
downloadcreative-scala-template-86e05110cc652c7c729672f58655a8e8585b072d.tar.gz
creative-scala-template-86e05110cc652c7c729672f58655a8e8585b072d.tar.bz2
creative-scala-template-86e05110cc652c7c729672f58655a8e8585b072d.zip
Initial import of template
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/Example.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/scala/Example.scala b/src/main/scala/Example.scala
new file mode 100644
index 0000000..faa158a
--- /dev/null
+++ b/src/main/scala/Example.scala
@@ -0,0 +1,12 @@
+import doodle.core._
+import doodle.core.Image._
+import doodle.syntax._
+import doodle.jvm.Java2DCanvas._
+import doodle.backend.StandardInterpreter._
+
+// To use this example, open the SBT console and type:
+//
+// Example.image.draw
+object Example {
+ val image = Circle(10) on Circle(20) on Circle(30)
+}