An open API service indexing awesome lists of open source software.

https://github.com/programminglaboratorys/yas

a programming lang easy and simple use for webdev and sys management
https://github.com/programminglaboratorys/yas

Last synced: 2 months ago
JSON representation

a programming lang easy and simple use for webdev and sys management

Awesome Lists containing this project

README

        

# Yas
a programming lang easy and simple use for webdev and sys management
## Yaslang or Yas

imaginary sytnex
print and for-loop
```py
print("Hello, World!")
for i = 0; range(0,100: {
# code
}

```
variables and if-elif-else
```C#
// make variable hi
hi = "Test"
// or
string hi = ""
if hi == "Test": {
/* code */
} elif hi == "hi": {
pass
} else {
print("Error")
}
```
multiple lines tesk
```py
Hello = "Hello"; World = "World"; system.printLine(Hello+" "+World+"!")
```
import library/package
```js
require "name" :-: name="Lib"
require "url" :-: name="Test" // import online package
print(Lib)
print(Test.foo())
```
funcs
```sh
func foo():{
print("Hello foo")
}

func bar(text):{
print("Hello "+text)
}
foo()
bar("World!")
```