File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed
Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 1010 <img alt="VSCode Extension Build" src="https://github.com/nthnn/zhivo/actions/workflows/build_ci_vsce.yml/badge.svg" />
1111</p >
1212
13- Just-in-time compiled programming language utilizing system available GPU with built-in unconventional expressivenes.
13+ JIT-compiled dynamic general-purpose programming language utilizing system-available GPU with built-in concurrency and unconventional expressiveness.
14+
15+ ``` zhivo
16+ #!/bin/zhivo
17+
18+ val count = 99;
19+
20+ while(count > 0) {
21+ val bottle = if(count == 1) "bottle" else "bottles";
22+
23+ render! count + " " + bottle + " of beer on the wall";
24+ render! count + " " + bottle + " of beer,";
25+ render! "Take one down, pass it around,";
26+
27+ count = count - 1;
28+
29+ if(count > 0)
30+ render! count + " " + bottle + " of the beer on the wall.\r\n"
31+ else render! "\r\nNo more " + bottle + " of beer on the wall.";
32+ };
33+ ```
34+
35+ <p align =" center " >
36+ <a href="https://zhivo.vercel.app"><img src="https://img.shields.io/badge/Learn%20More-007ec6?style=for-the-badge&logoColor=white&logo=Google-Chrome" /></a>
37+ </p >
1438
1539> [ !WARNING]
1640> This repository is under a slow development. (Busy on my job)
You can’t perform that action at this time.
0 commit comments