# Funct Command
The Funct commmand is used to create or change a function.
 
```
funct function(){
    log("Hello World!");
};
```

It can also be used with function arguments.

```
funct function(text){
    log(text);
};
```