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
- Host: GitHub
- URL: https://github.com/programminglaboratorys/yas
- Owner: programminglaboratorys
- Created: 2022-06-11T06:51:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-11T07:27:00.000Z (almost 3 years ago)
- Last Synced: 2025-02-08T17:44:33.468Z (4 months ago)
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yas
a programming lang easy and simple use for webdev and sys management
## Yaslang or Yasimaginary 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!")
```