Как я могу проверить, что две функциональные переменные указывают на одну и ту же функцию?
test = lm
test2 = lm
test == lm # error: comparison (1) is possible only for atomic and list types
test == test2 # error: comparison (1) is possible only for atomic and list types