# Even though this file has *.init ending, it is actually Python code. # However, it should only be executed from inside the symwiz code. # And as you can guess, in Python comments start with a '#'. # create two variables (strings, but Python is fully object-oriented and not typed) # the project name, which is also used for directory, file, and class names PrjName = 'swHelloBasic' # and the UID UID = '0x02222222' # this is a list that describes the menu structure # in this case there are just two menu items, first the text and then the associated C++ code resource.menu = [['Hello', infonote( 'Hello World Basic' ) ], ['Exit', 'Exit();' ]]