1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4// In order to be compatible with both desktop, wasm, and android, the example is both a binary and a library.
5// Just forward to the library in main
6
7fn main() {
8 todo_lib::main();
9}
10