summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/math/Mul.md
blob: 69f2dbe1b31aa5532360d7080feef741083960fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
title: math.Mul
description: Multiplies two or more numbers.
categories: []
keywords: []
params:
  functions_and_methods:
    aliases: [mul]
    returnType: any
    signatures: [math.Mul VALUE VALUE...]
---

If one of the numbers is a [`float`](g), the result is a `float`.

```go-html-template
{{ mul 12 3 2 }} → 72
```