HelloWorld.py

HelloWorld.py#

:HelloWorld.py
HelloWorld.py

The simplest Hello World!

1# The simplest program - just show the Hello world!
2import coat
3# just show the text in the dialog with the OK button.
4# most of 3DCoat functions accesible using the coat module
5coat.dialog().text("Hello world!").ok().show();
:HelloWorld.py
1     # The simplest program - just show the Hello world!
2
3     import coat
4
5     # just show the text in the dialog with the OK button.
6     # most of 3DCoat functions accesible using the coat module
7
8     coat.dialog().text("Hello world!").ok().show();