Meta Project

The Unofficial Meta Documentation

COPY

Summary

COPY makes a copy of a STRING! value

Category

Categoryname

Usage

new-value: COPY value

Arguments

value - STRING! type to be made available as a copy.

Refinements

This method has no refinements

Description

COPY makes a copy of a STRING! value.

COPY should be used sparingly. It can be cause of memory leakage.

Example Code

string: "Meta is my new programming language of choice"
new-string: copy cut string 4

Related

CUT  

Back to the Meta Methods Reference index