I'm preparing some extra math functions to make a pull request. Currently, SQRT has an import statement within itself, see below. Shall I keep it like that, or shall I add math to the import statement in the kernel?
CODE SQRT import math; dpush(math.sqrt(dpop())) END-CODE