10 lines
142 B
Plaintext
10 lines
142 B
Plaintext
? 7 * 52;
|
|
=> 364
|
|
? define variable *your-variable* = $foo;
|
|
? begin
|
|
let yours = "apple";
|
|
let mine = yours;
|
|
mine == yours;
|
|
end;
|
|
=> #t
|