File: with-stop-error-auto-entrace.Rmd

package info (click to toggle)
r-cran-evaluate 1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 436 kB
  • sloc: sh: 13; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 117 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
---
title: document with error
---

```{r}
f <- function() g()
g <- function() h()
h <- function() stop("!")
f()
```