12 lines
207 B
Python
12 lines
207 B
Python
from _project import *
|
|
from _1_title import *
|
|
|
|
open_project("net")
|
|
|
|
print(have_title("net"))
|
|
set_title("net", "xxx")
|
|
print(have_title("net"))
|
|
unset_title("net")
|
|
print(have_title("net"))
|
|
|
|
close_project("net") |