As the question suggests, if a program should be written in a purely imperative style (even if the programming language is an amalgamated language like PHP or Python which support other paradigms like OOP), should the program incooperate built in language functions, like PHP's explode();
function? Or, does the program no longer become purely imperative?
To give some context here, I've been asked to create a purely imperative program. I have free reign over the language, I'll probably choose Python. Am I breaking the rules of the imperative paradigm by using built in language functions though?
Thanks