mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 06:08:31 +01:00
183 B
183 B
reverse
Reverse a list.
Since:: 2.0
Parameters
lt
: The list to be reversed.
Examples
use <util/reverse.scad>
assert(reverse([1, 2, 3]) == [3, 2, 1]);