I was reading through Julia's noteworthy differences from R. This bullet point left me feeling a bit confused.
Julia can create substrings by indexing into strings. In R, strings must be converted into character vectors before creating substrings.
Is the conversion happening behind the scenes? Is what is happening in Julia different than, for example, substr("test", 2, 3)
? Has the Julia documentation mischaracterized R?