|
|
In SAC you can mark a module as deprecated.
|
|
|
This is the syntax for that:
|
|
|
|
|
|
|
|
|
```c
|
|
|
module Simple deprecated "This module is deprecated because ....";
|
|
|
|
|
|
// Continue the module
|
|
|
```
|
|
|
|
|
|
The deprecation notice has to include a string which specifies a reason why the module is deprecated.
|
|
|
|