initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled

This commit is contained in:
2025-09-16 20:46:46 -04:00
commit 9d30169a8d
13378 changed files with 7050105 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
func test():
# GH-109376
# Note: unlike "for range", which is iterated in place, this helper function generates an array of all values in range.
var result
result = range(2147483640, 2147483647) # Range below 32-bit size limit.
print(result)
result = range(2147483640, 2147483647 + 1) # Range 1 over 32-bit size limit.
print(result)
result = range(9922147483640, 9922147483647) # Range significantly over 32-bit size limit.
print(result)