## Schedule
Schedule schedules a file for the future. It delays its execution by the given ticks.
|constructor| |
|--|--|
|String|name of a function(without namespace)|
|ticks| the delay |
You can also use Schedule.file that requires a file instead to define both in one statement.
**Example:**
```dart
Schedule("timer",ticks:20)
⇒ schedule function example:timer 20t
```