Bird

Import Statements

Import statements allow you to import standard library statements directly into the current file so that you can use pre-made functions without having to implement them.

Importing Statements

To import standard library statements, use the import keyword followed by the namespace paths to the standard library statements.

Importing Namespaces

You can also import entire standard library namespaces which includes all the the statements within the namespace.

Importing with the From Keyword

The from keyword allows you to specify the namespace prefix of import paths.

Still here?

Check out the playground!