Meta Project

The Unofficial Meta Documentation

ADVANCE

Summary

ADVANCE Advances a STRING! variable one position

Category

Categoryname

Usage

ADVANCE value

Arguments

value - A string value

Refinements

This method has no refinements

Description

ADVANCE advances a STRING! variable one position, rather than using SKIP string 1 to advance just one position.

ADVANCE updates a variable, like INCREMENT

Example Code

string: "!Meta"
advance string
write/line string

Result:

Meta

Related

SKIP  
RETREAT  
INCREMENT  
NEXT  

Back to the Meta Methods Reference index