UNPKG
lean4-code-actions
Version:
latest (1.1.32)
1.1.32
Refactorings and snippets for Lean 4
lean4-code-actions
/
libs
/
utils
/
scale.ts
16 lines
(8 loc)
•
242 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Singulars */
export
const
hundred =
100
export
const
thousand =
10
* hundred
export
const
million = thousand * thousand
/* Plurals */
export
const
hundreds = hundred
export
const
thousands = thousand
export
const
millions = million