summaryrefslogtreecommitdiff
path: root/tests/examplefiles/session.dylan-console
blob: 6f289c8e8919ba1bfc4035e0b001a7c9b594590c (plain)
1
2
3
4
5
6
7
8
9
? 7 * 52;
=> 364
? define variable *your-variable* = $foo;
? begin
   let yours = "apple";
   let mine = yours;
   mine == yours;
 end;
=> #t