HPL (H Programming Language) 是一种基于 YAML 格式的面向对象编程语言
Project description
HPL Runtime
HPL(H Programming Language)运行时 - 一种基于 YAML 格式的面向对象编程语言解释器。
特性
- 📝 YAML 语法 - 使用人类可读的 YAML 格式编写代码
- 🏗️ 面向对象 - 支持类、继承和对象实例化
- 🔄 动态类型 - 无需显式类型声明
- 📦 模块系统 - 文件包含和标准库导入
- 🛠️ 标准库 - 内置 math、io、json、os、time 等模块
- 🐛 调试工具 - 内置错误分析和调试功能
安装
pip install hpl-runtime
快速开始
创建 hello.hpl 文件:
main: () => {
echo "Hello, HPL!"
}
call: main()
运行程序:
hpl hello.hpl
完整示例
classes:
Calculator:
add: (a, b) => {
return a + b
}
objects:
calc: Calculator()
main: () => {
result = calc.add(10, 20)
echo "Result: " + result
}
call: main()
使用标准库
imports:
- math
- io
main: () => {
echo "PI: " + math.PI
echo "sqrt(16): " + math.sqrt(16)
io.write_file("test.txt", "Hello from HPL!")
}
call: main()
文档
项目链接
- 主页: https://github.com/TheSingularityStudio/HPL
- 问题反馈: https://github.com/TheSingularityStudio/HPL/issues
许可证
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hpl_runtime-1.1.6.tar.gz
(95.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
hpl_runtime-1.1.6-py3-none-any.whl
(110.7 kB
view details)
File details
Details for the file hpl_runtime-1.1.6.tar.gz.
File metadata
- Download URL: hpl_runtime-1.1.6.tar.gz
- Upload date:
- Size: 95.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e6ec997392bf2a5014bded8ad5e2a062b7beefba99995dbc287afa8334c3ae2
|
|
| MD5 |
61fa3a49db53f0155859a9947aca6c64
|
|
| BLAKE2b-256 |
b971e37bb3fcf2259d37eab90ffbf6bc55c13dcdb54691d3f8f64d85ac5a91a2
|
File details
Details for the file hpl_runtime-1.1.6-py3-none-any.whl.
File metadata
- Download URL: hpl_runtime-1.1.6-py3-none-any.whl
- Upload date:
- Size: 110.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
959d8dd7d36d4ccc5d152767d862ff2deb284f07be92de31939499d3f79fd4e7
|
|
| MD5 |
7ad4a4c6bada4eedd3aaf1b242ea2df1
|
|
| BLAKE2b-256 |
fb17708f5604ae9555a8113a9e99aaffa283715400fce71f9f44b61d6dd1bd5a
|