jrosell commited on
Commit
542978e
·
1 Parent(s): 4b733d9

lastid o glovalenv?

Browse files
Files changed (1) hide show
  1. app.R +1 -1
app.R CHANGED
@@ -131,7 +131,7 @@ tibble(name = "Holi", content = "Guapi.") |>
131
  items$add_row() -> last_id
132
  items$read_rows() |> print()
133
 
134
- cat("\nDelete last item:\n")
135
  items$delete_row(id = last_id)
136
  items$read_rows() |> print()
137
 
 
131
  items$add_row() -> last_id
132
  items$read_rows() |> print()
133
 
134
+ cat(glue("\nDelete last item id={last_id}:\n"))
135
  items$delete_row(id = last_id)
136
  items$read_rows() |> print()
137