mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
24 lines
499 B
Markdown
24 lines
499 B
Markdown
---
|
|
title: math.Sub
|
|
description: Subtracts one or more numbers from the first number.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [sub]
|
|
related:
|
|
- functions/math/Add
|
|
- functions/math/Div
|
|
- functions/math/Mul
|
|
- functions/math/Product
|
|
- functions/math/Sum
|
|
returnType: any
|
|
signatures: [math.Sub VALUE VALUE...]
|
|
---
|
|
|
|
If one of the numbers is a [`float`], the result is a `float`.
|
|
|
|
```go-html-template
|
|
{{ sub 12 3 2 }} → 7
|
|
```
|
|
|
|
[`float`]: /getting-started/glossary/#float
|