blob: 7768ecf502e2e15b517348d86b83ca586ffdc6fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# REQUIRED IMPORT! The pendulum will NOT WORK if you do not import this.
from pendulum import System
# Initialize the system
system = System()
# REQUiRED! This initializes the system.
system.initialize()
#
# Add your code here!
#
#REQUIRED! This deinitializes the system, allowing another instance to be initialized.
system.deinitialize()
|