1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
Files
dotSCAD/docs/lib2-reverse.md
Justin Lin 46c25aa51e add doc
2019-06-29 09:53:02 +08:00

17 lines
193 B
Markdown

# reverse
Reverse a list.
**Since: **: 2.0
## Parameters
- `lt` : The list to be reversed.
## Examples
include <util/reverse.scad>;
echo(reverse([1, 2, 3])); // ECHO: [3, 2, 1]