> For the complete documentation index, see [llms.txt](https://uslangg.gitbook.io/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://uslangg.gitbook.io/project/a/algorithms.md).

# Algorithms

### import Algorithm:

### Örnekler:

```
import [<algorithm>]
//Kod
```

```
US(import [<algorithm>]
    //Kod
)
```

### US\_Main Algoritması:

#### Kod yapısını inceler hataları yakalar ve uygun çözümleri sunar. yakalanan hatalar "error()" ile yazdırılabilir.

{% hint style="warning" %}
US\_Main adını almasının sebebi yapılmış olan ilk algoritma olmasıdır.
{% endhint %}

```
US(import [US_Main]
    print(xxx)
    print(error)
)
//error çıkışı:
//ERROR: print(xxx) - xxx is not a variable, is a text. you should use print("xxx")
```

```
US(import [US_Main]
    var test > "test"
    print(tesst)
    print(error)
)
//error çıkışı:
//ERROR: print(tesst) - tesst is not a variable, is a text. I have found variable that is close to this; print(test)
```

### Erişebildiğiniz mevcut algoritma listesi:

```
Algorithm {
    US_Main(),
    reflective(),
    mirror(),
    ai(),
}
```
