mirror of
https://github.com/hi-language/transpiler.git
synced 2026-01-14 00:28:05 +00:00
11 lines
151 B
JavaScript
11 lines
151 B
JavaScript
a: 10
|
|
b: 20
|
|
max: (a > b) ? { a } : { b }
|
|
_(max)
|
|
|
|
status: "ok"
|
|
(status == "ok") ? { _("Status is OK") }
|
|
|
|
grade: (max > 15) ? { "A" } : { "B" }
|
|
_(grade)
|