mirror of
https://github.com/BoardWare-Genius/jarvis-models.git
synced 2025-12-13 16:53:24 +00:00
16 lines
289 B
Markdown
16 lines
289 B
Markdown
# Runtime
|
|
虛擬運行時,用於隔離租戶環境與服務器環境,提供腿本用於調用模型,組成工作流。
|
|
# 語法
|
|
```
|
|
// 使用//註解
|
|
// "雙引號字符串"
|
|
let s = "hello"
|
|
// 整數
|
|
let i = 10
|
|
// 浮點數
|
|
let f = 1.2
|
|
// 動態類型
|
|
s = i
|
|
// 返回值
|
|
return s
|
|
``` |