---
title: "use-fmt-print"
description: "Prefer fmt.Print over builtin print."
image: "https://strider.gempir.com/og.png"
---

> Documentation Index
> Fetch the complete documentation index at: https://strider.gempir.com/llms.txt
> Use this file to discover all available pages before exploring further.

# use-fmt-print

<!-- Code generated by docs/scripts/generate-check-docs.go; DO NOT EDIT. -->

**Default severity:** `warning`

Prefer fmt.Print over builtin print.

## Bad

```go
print(message)
```

## Good

```go
fmt.Print(message)
```

Source: https://strider.gempir.com/lints/use-fmt-print/index.mdx
