summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.monkey
diff options
context:
space:
mode:
authorTinnet Coronam <tinnet@coronam.net>2012-10-17 00:30:48 +0200
committerTinnet Coronam <tinnet@coronam.net>2012-10-17 00:30:48 +0200
commit0274d7b2b9525abb3bcfe4fb81a83a7db27b5fd7 (patch)
tree37e36ab65129a27f29978a5b7df5e103942173e8 /tests/examplefiles/example.monkey
parentdd066c54e36bfe535a4b13cd3dc6fc0fe083efe7 (diff)
downloadpygments-0274d7b2b9525abb3bcfe4fb81a83a7db27b5fd7.tar.gz
added Throw and Interface
Diffstat (limited to 'tests/examplefiles/example.monkey')
-rw-r--r--tests/examplefiles/example.monkey7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/examplefiles/example.monkey b/tests/examplefiles/example.monkey
index df310ff7..5457fc88 100644
--- a/tests/examplefiles/example.monkey
+++ b/tests/examplefiles/example.monkey
@@ -70,7 +70,14 @@ End
Class VectorNode Extends Node<Vector2D>
End
+Interface Computer
+ Method Boot ()
+ Method Process ()
+ Method Display ()
+End
+Class PC Implements Computer
+End
Function Main()
New Game()