inst/bad1/R/tf.R

tf <- function() {
  if (TRUE == T) print("foo")
  T + F + 1
}

## These shuld be OK (but it's not currently)

tfgood <- function() {
  T <- "yes!"
  print(T)
}
MangoTheCat/goodpractice documentation built on Sept. 5, 2022, 2 p.m.