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

https://github.com/jewishlewish/barcelona

Programming Language allowing for more efficient API Requests for Other Interpreter Languages
https://github.com/jewishlewish/barcelona

barcelona interpreter language programming-language

Last synced: 3 months ago
JSON representation

Programming Language allowing for more efficient API Requests for Other Interpreter Languages

Awesome Lists containing this project

README

        

```Rust
fn main {
echo "Hello world";
record "Test" -> "Hello world";

fetch "Test" -> x;

if x == "Hello world" {
echo "This works!";
}

x = "test";
garbage x;

test();

}

/*Comments are anything THAT ARE NOT INSIDE THE FUNCTIONS!*/

fn test {
echo "Hello world";
}

main();

echo "DONE!";
```