08.qmd (421B)
1 --- 2 title: Cohort 8 3 --- 4 5 {{< video https://www.youtube.com/embed/LnoOo-TFGkI >}} 6 7 <details> 8 9 <summary>Meeting chat log</summary> 10 ``` 11 00:04:59 Federica Gazzelloni (she/her): start 12 00:44:21 Betsy: text <- c("al", "bob", "charlie") 13 14 for (i in seq_along(text)) { 15 print(text[[i]]) 16 } 17 18 for (i in seq_along(text)) { 19 print(i) 20 } 21 22 for (name in text) { 23 print(name) 24 } 25 00:53:43 Federica Gazzelloni (she/her): Stop 26 ``` 27 </details>