Memory safe scripting languages

According to https://media.defense.gov/2025/Jun/...RABILITIES_IN_MODERN_SOFTWARE_DEVELOPMENT.PDF, Python and Ruby are memory safe languages (MSL's) for scripting. JavaScript may be another one. What are other memory safe scripting languages? What are their specific benefits? How do they compare to each other and to other scripting languages?

According to https://onwavegroup.com/blog/which-programming-languages-are-truly-memory-safe, Python isn't natively memory safe, though it's memory safer and classified as having memory safety. Its structure reduces the amount of memory safety related bugs.
 
Back
Top