basic: string array is a thing now

This commit is contained in:
minjaesong
2020-12-27 20:47:31 +09:00
parent 74cde2f5b1
commit e37a382fe2
2 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ There are six basic types: \emph{number}, \emph{boolean}, \emph{string}, \emph{
\emph{Boolean} is type of the value that is either \codebf{TRUE} or \codebf{FALSE}. Number \codebf{0} and \codebf{FALSE} make the condition \emph{false}. When used in numeric context, \codebf{FALSE} will be interpreted as 0 and \codebf{TRUE} as 1.
\emph{String} represents immutable\footnote{Cannot be altered directly} sequences of bytes. However, you can't weave them to make something like \emph{string array}\footnote{Future feature\ldots\ maybe\ldots? Probably not\ldots}.
\emph{String} represents immutable\footnote{Cannot be altered directly} sequences of bytes.
\emph{Array} represents a collection of numbers in one or more dimensions.