mirror of
https://github.com/pyscript/pyscript.git
synced 2022-05-01 19:47:48 +03:00
21 lines
409 B
HTML
21 lines
409 B
HTML
<html>
|
|
<head>
|
|
<title>Antigravity</title>
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" href="../build/pyscript.css" />
|
|
<script defer src="../build/pyscript.js"></script>
|
|
</head>
|
|
<py-env>
|
|
- paths:
|
|
- /antigravity.py
|
|
</py-env>
|
|
<body>
|
|
<b>Based on xkcd: antigravity https://xkcd.com/353/.</b>
|
|
<py-script>
|
|
import antigravity
|
|
antigravity.fly()
|
|
</py-script>
|
|
</body>
|
|
</html>
|