(bind-global! name init)
  name: a sym
  init: any type
  returns #n
F

Binds a global variable.

This function associates the symbol name with a global variable, initializing it with the value init.

It's an error if the symbol name is already bound to a global variable.

has-global?
del-global!