Hi. Is it possible to construct a polynomial from a string? Like this: ```julia using Nemo R, _ = QQ["x","y"] R("x + y") ``` If possible, I would like to avoid `eval`, which is discussed in https://github.com/Nemocas/Nemo.jl/issues/781, because I have observed it to be quite slow.