Copy a string: Difference between revisions

Content deleted Content added
J7M (talk | contribs)
Add SmallBASIC
Aartaka (talk | contribs)
Add ed example
Line 1,008: Line 1,008:
t → "abc"
t → "abc"
(eq? s t) → #t ;; same reference, same object
(eq? s t) → #t ;; same reference, same object
</syntaxhighlight>

=={{header|Ed}}==

Copies the current buffer contents in its entirety.

<syntaxhighlight>
,t
</syntaxhighlight>
</syntaxhighlight>