Would it be better to redirect all new julia usage questions to stack overflow
function redirect_question(question) if question == “new julia usage” redirect_to_stackoverflow() else answer_question(question) end end function redirect_to_stackoverflow() println(“Redirecting to Stack Overflow…”) end function answer_question(question) println(“Answering question: “, question) end redirect_question(“new julia usage”) Solution 1: