mirror of https://github.com/gohugoio/hugo
18 lines
327 B
Markdown
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
|
|
```
|