Quick fix:
import cirruParser / types as cpTypes
RunThis is because the actual module name is `types`, not `cirruParser/types`, so it will conflict when you import yet another `types` elsewhere. In such case, the `import as` statement becomes handy.
