a string variable must end with _______________
Answers
Answered by
2
Answer:
dollar sign$
always end with dollar sign
Answered by
2
Answer:
String variable names must end with a $ (dollar sign). Text is assigned to a string variable using the equals sign ( = ). This example assigns "Hello World" to the string variable hello$ and then prints it in the mainwin.
hello$ = "Hello World"
print hello$
The program above produces this in the mainwin:
Hello World
Similar questions