Skip to content

Commit

Permalink
Add docs for LEFT$ and RIGHT$
Browse files Browse the repository at this point in the history
  • Loading branch information
jestin committed Apr 8, 2024
1 parent c0293d7 commit 6097f6c
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions appendix/basic_commands.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3172,7 +3172,15 @@ \subsection{INT}

\subsection{LEFT\$}

<TODO>
The {\ttfamily LEFT\$} function takes a string and number and returns a
substring containing the specified number of leftmost characters.\\

Example:\\

\codeblock {
PRINT LEFT\$("BASEBALL", 4)\\
BASE\\
}

\subsection{LEN}

Expand Down Expand Up @@ -3204,7 +3212,15 @@ \subsection{POS}

\subsection{RIGHT\$}

<TODO>
The {\ttfamily RIGHT\$} function takes a string and number and returns a
substring containing the specified number of rightmost characters.\\

Example:\\

\codeblock {
PRINT RIGHT\$("BASEBALL", 4)\\
BALL\\
}

\subsection{RND}

Expand Down

0 comments on commit 6097f6c

Please sign in to comment.