mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 22:28:16 +01:00
184 B
184 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]);