🐚
新奇 + 实用
纯粹、流畅、高效的全新编程体验
namespace zin;
set('title', '示例页面');
h1('Hello world!');
p('这是 zin 的示例页面!');
div
(
button('了解更多'),
html('<p>仍然支持添加复杂的 <strong>HTML</strong></p>')
);
render();
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="renderer" content="webkit">
<title>示例页面</title>
</head>
<body>
<h1>Hello world!</h1>
<p>这是 zin 的示例页面!</p>
<div>
<button type="button">了解更多</button>
<p>仍然支持添加复杂的 <strong>HTML</strong></p>
</div>
</body>
</html>