1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-04 13:57:33 +02:00
This commit is contained in:
Justin Lin
2022-03-12 22:30:10 +08:00
parent 951ed2daf2
commit b89a800022

View File

@@ -8,4 +8,4 @@
*
**/
function reverse(lt) = [for(i = len(lt) - 1; i >= 0; i = i - 1) lt[i]];
function reverse(lt) = [for(i = len(lt) - 1; i > -1; i = i - 1) lt[i]];