hugo/docs/content/en/functions/math/Mod.md
2025-04-10 13:04:51 +02:00

15 lines
263 B
Markdown

---
title: math.Mod
description: Returns the modulus of two integers.
categories: []
keywords: []
params:
functions_and_methods:
aliases: [mod]
returnType: int64
signatures: [math.Mod VALUE1 VALUE2]
---
```go-html-template
{{ mod 15 3 }} → 0
```