1
0
Fork 0
hugo/docs/content/en/functions/math/Mul.md

18 lines
327 B
Markdown

---
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
```