blob: 49459cd715fd1bb2328a709ae7468fa883d9b954 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
title: math.Sub
description: Subtracts one or more numbers from the first number.
categories: []
keywords: []
params:
functions_and_methods:
aliases: [sub]
returnType: any
signatures: [math.Sub VALUE VALUE...]
---
If one of the numbers is a [`float`](g), the result is a `float`.
```go-html-template
{{ sub 12 3 2 }} → 7
```
|