Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

One element vector is the same a single value

name = "foo"
names = c("foo")
print(name == names)
class(name)
class(names)
print(name[1])
print(names[1])

{% embed include file="src/examples/vectors/one_element_vector.out)