summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/math/Mod.md
blob: d312730c542120d9960a6c7bbc8c8aff7a2f41e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
title: math.Mod
description: Returns the modulus of two integers.
categories: []
keywords: []
action:
  aliases: [mod]
  related:
    - functions/math/ModBool
  returnType: int64
  signatures: [math.Mod VALUE1 VALUE2]
---

```go-html-template
{{ mod 15 3 }} → 0
```