// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT // ANCHOR: main_window // memory.slint export component MainWindow inherits Window { Text { text: "hello world"; color: green; } } // ANCHOR_END: main_window