USE
USE expr
Used with various commands for passing a user-defined expression
expr
.
Example: Split
"/etc/temp/filename1.ext " ' additional spaces at the end of the string
s = "/", v, "temp" USE TRIM(x) ' trim(x) will remove spaces at the beginning
SPLIT s, ' and the end of the splitted strings;
' try the example without "USE TRIM(x)"
FOR i = 0 TO UBOUND(v)
PRINT i;" [";v(i);"]"
NEXT
' displays
' 0 []
' 1 [etc/temp]
' 2 [filename1.ext]
Code samples using USE
000 hello.bas
001 3 ways to print hello 5 times.bas
002 numeric variables.bas
003 conditional branching.bas
004 loops.bas
005 challenge.bas
006 arrays+.bas
2048.bas
2048.bas
3d_palmx.bas
3d_torus.bas
3dtictac.bas
3dtorus.bas
3dttt.bas
3dttt.bas
4tune.bas
7gables.bas
A Rubens, Peter Paul Landscape.bas
agendus.bas
ai.bas
anball 1.0.bas
another look at trig functions.bas
Balleta 2-11-15.bas
base64.bas
betrayal: crows ii.bas
bezier_pen.bas
biorythms.bas
blackbox.bas
Blackbox.bas
Language
AND
AS
BAND
BG
BOR
BYREF
CALL
CASE
CATCH
CONST
DECLARE
DEF
DO
ELIF
ELSE
ELSEIF
END
END TRY
ENDIF
EQV
EXIT
FALSE
FI
FOR
FUNC
GOSUB
GOTO
IF
IFF
IMP
IN
LABEL
LET
LIKE
LOCAL
LSHIFT
MDL
MOD
NAND
NEXT
NOR
NOT
ON
OR
REM
REPEAT
RETURN
RSHIFT
SELECT
STEP
STOP
SUB
THEN
THROW
TO
TRUE
TRY
UNTIL
USE
USG
USING
WEND
WHILE
XNOR
XOR
If there is insufficient information on this page and you wish learn more about USE,
please send an email to smallbasic@gmail.com. You can help to improve information about
USE by submitting a pull request,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.