// DISABLED
config.set_option("client.displayEnabled", False)
print("doing nothing")
st.text("This should not appear")
print("doing nothing - part deux")
After Change
// ENABLED
config.set_option("client.displayEnabled", True)
a = st.text("This will be overwritten")
b = st.text("This will be overwritten too")
a.text("This should show up first")
// DISABLED