mirror of
https://github.com/apricote/releaser-pleaser.git
synced 2026-01-13 21:21:03 +00:00
13 lines
175 B
Text
13 lines
175 B
Text
|
|
## Foo
|
||
|
|
|
||
|
|
- Cool thing
|
||
|
|
|
||
|
|
```go
|
||
|
|
// Some code example
|
||
|
|
func IsPositive(number int) error {
|
||
|
|
if number < 0 {
|
||
|
|
return fmt.Errorf("number %d is negative", number)
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
```
|