Skip to content

Commit 8be606c

Browse files
committed
Improved README.md file
1 parent 8000906 commit 8be606c

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,31 @@
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)

0 commit comments

Comments
 (0)