mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
9 lines
218 B
PHP
9 lines
218 B
PHP
<?php
|
|
$operator = PyCore::import("operator");
|
|
$builtins = PyCore::import("builtins");
|
|
$webview = PyCore::import('webview');
|
|
$webview->create_window("Hello world", "https://pywebview.flowrl.com/");
|
|
$webview->start();
|
|
|
|
|