How would a person Catializing the first letter of and output of a input statement?
input "Enter City: ", city$
If I entered minneapolis and wanted it to show Minneapolis
			
			
			
				One way:
input "Enter City: ", city$
city$=ucase$(left$(city$,1))+lcase$(mid$(city$,2))
LarryMc
			
			
			
				Thank you