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.
US_Main adını almasının sebebi yapılmış olan ilk algoritma olmasıdır.
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(),
}
Last updated