-
Автор темы
- #1
Ребят у кого нибудь есть платные слитые курсы для языка golang? Так же буду благодарен если будут курсы по js, html, css
Зачем нужны курсы когда есть,Ребят у кого нибудь есть платные слитые курсы для языка golang? Так же буду благодарен если будут курсы по js, html, css
?if err != nil enjoyer
poor language design leads to nonsensical syntax like this
result, err = somethingThatMightErrorOut()
if err != nil {
// ayo this an error?
// what kind of an error is this?
// boutta read the documentation 🤓🤓🤓
}
result = something_that_might_throw().unwrap() // panic out
Rust unwrap on Go speedrun:poor language design leads to nonsensical syntax like this
compare that to rust, for exampleC-like:result, err = somethingThatMightErrorOut() if err != nil { // ayo this an error? // what kind of an error is this? // boutta read the documentation 🤓🤓🤓 }
rust has the best error management yet (errors as values are just the greatest).C-like:result = something_that_might_throw().unwrap() // panic out
func Unwrap[T any](x T, err error) T {
if err != nil {
panic(err)
}
return x
}
Проект предоставляет различный материал, относящийся к сфере киберспорта, программирования, ПО для игр, а также позволяет его участникам общаться на многие другие темы. Почта для жалоб: admin@yougame.biz