summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruce Mitchener, Jr. <bruce.mitchener@gmail.com>2013-01-10 00:15:59 +0700
committerBruce Mitchener, Jr. <bruce.mitchener@gmail.com>2013-01-10 00:15:59 +0700
commitf98697ad0962679db2ff490fcc7f8732ddc891f0 (patch)
tree0697452fadcc66fa781f941af8efb50329f95ab5 /tests
parent5342a4d9e1c9a75481fcabf25873476f3d0e4bdd (diff)
parentbcde9659ae6bf1e4c3336ed1140383b5853d1b79 (diff)
downloadpygments-f98697ad0962679db2ff490fcc7f8732ddc891f0.tar.gz
Merged.
Diffstat (limited to 'tests')
-rw-r--r--tests/examplefiles/session.dylan-console9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/examplefiles/session.dylan-console b/tests/examplefiles/session.dylan-console
new file mode 100644
index 00000000..6f289c8e
--- /dev/null
+++ b/tests/examplefiles/session.dylan-console
@@ -0,0 +1,9 @@
+? 7 * 52;
+=> 364
+? define variable *your-variable* = $foo;
+? begin
+ let yours = "apple";
+ let mine = yours;
+ mine == yours;
+ end;
+=> #t