names.AmigaBasic | R Documentation |
In the binary Amiga Basic files, names for labels and variables in the code are stored at the end of the file. In the encoded there is only a pointer to the index of the name in that list. Use this function to list, select or replace names included in the code
## S3 method for class 'AmigaBasic'
names(x)
## S3 replacement method for class 'AmigaBasic'
names(x) <- value
x |
An |
value |
A ( |
Make sure that variable and label names are valid for the basic script (see check.names.AmigaBasic).
A vector
of character
strings with label and variable names in the basic script.
In case of the replacement method a AmigaBasic()
-class with replaced names is returned.
Pepijn de Vries
Other AmigaBasic.operations:
AmigaBasic.reserved()
,
AmigaBasicBMAP
,
AmigaBasic
,
[.AmigaBasic()
,
as.AmigaBasicBMAP()
,
as.AmigaBasic()
,
as.character()
,
check.names.AmigaBasic()
,
rawToAmigaBasicBMAP()
,
rawToAmigaBasic()
,
read.AmigaBasicBMAP()
,
read.AmigaBasic()
,
write.AmigaBasic()
## Let's create some Basic code with labels and variables:
bas <- as.AmigaBasic(c(
"REM - This will loop forever...",
"my.label:",
" my.variable% = 0",
" WHILE my.variable% < 10",
" my.variable% = my.variable% + 1",
" WEND",
" GOTO my.label"
))
## list the names in the script above:
names(bas)
## change the first name:
names(bas)[1] <- "better.label"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.