A dummy parent function to test namespace injection

dummy_parent_func(x)

Arguments

x

Input value to pass to child function

Value

A character string with parent output

Examples

# Call the parent function which internally calls dummy_child_func
result <- dummy_parent_func("sample")
print(result)
#> [1] "Parent output -> HOTFIXED! Input: sample"