diff options
author | Bruce Mitchener, Jr. <bruce.mitchener@gmail.com> | 2013-01-10 00:15:59 +0700 |
---|---|---|
committer | Bruce Mitchener, Jr. <bruce.mitchener@gmail.com> | 2013-01-10 00:15:59 +0700 |
commit | f98697ad0962679db2ff490fcc7f8732ddc891f0 (patch) | |
tree | 0697452fadcc66fa781f941af8efb50329f95ab5 /tests | |
parent | 5342a4d9e1c9a75481fcabf25873476f3d0e4bdd (diff) | |
parent | bcde9659ae6bf1e4c3336ed1140383b5853d1b79 (diff) | |
download | pygments-f98697ad0962679db2ff490fcc7f8732ddc891f0.tar.gz |
Merged.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/examplefiles/session.dylan-console | 9 |
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 |