debug_print.Rd
Debug print
debug_print(x)
An object to be printed
misc::debug_print(1:10)
#>
#> [1] "1:10's value:"
#> [1] 1 2 3 4 5 6 7 8 9 10
#>
misc::debug_print("Hello, world!")
#>
#> [1] "\"Hello, world!\"'s value:"
#> [1] "Hello, world!"
#>