# Class Command
The Class command is used to store functions and variables outside of the current scope.

```
class parent(static){
    funct child(){
        log("Child");
    };
};
```