GOLANGTESTS Telegram 243
Что выведет код ?


package main

import (
"errors"
"fmt"
)

var ErrNotFound = errors.New("Resource was not found")

func main() {
err := raise()
if err == ErrNotFound {
fmt.Println("impossible")
return
}
if err != nil {
fmt.Println("unexpected error")
return
}
}

func raise() error {
return ErrNotFound
}

Ответ

@golangtests
👍61🔥1



tgoop.com/golangtests/243
Create:
Last Update:

Что выведет код ?


package main

import (
"errors"
"fmt"
)

var ErrNotFound = errors.New("Resource was not found")

func main() {
err := raise()
if err == ErrNotFound {
fmt.Println("impossible")
return
}
if err != nil {
fmt.Println("unexpected error")
return
}
}

func raise() error {
return ErrNotFound
}

Ответ

@golangtests

BY Go tests


Share with your friend now:
tgoop.com/golangtests/243

View MORE
Open in Telegram


Telegram News

Date: |

"Doxxing content is forbidden on Telegram and our moderators routinely remove such content from around the world," said a spokesman for the messaging app, Remi Vaughn. Image: Telegram. How to build a private or public channel on Telegram? The court said the defendant had also incited people to commit public nuisance, with messages calling on them to take part in rallies and demonstrations including at Hong Kong International Airport, to block roads and to paralyse the public transportation system. Various forms of protest promoted on the messaging platform included general strikes, lunchtime protests and silent sit-ins. As five out of seven counts were serious, Hui sentenced Ng to six years and six months in jail.
from us


Telegram Go tests
FROM American