euddraft
euddraft copied to clipboard
[epScript] Range syntax
thinking of similar syntax with Swift
0...4 // closed range
1..<7 // half-open interval
Original issue: https://cafe.naver.com/edac/116720
If range syntax
compiled to python Range()
, It's good to add step
for users?
0...4...2
0...4
Little bit dirty...