> For the complete documentation index, see [llms.txt](https://sron.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sron.gitbook.io/docs/faq.md).

# Frequently Asked Questions

* **Is SRON platform independent?**\
  Currently, SRON is only available for Windows(x64) but it is currently under development for Linux and Mac Systems. After that, we can call SRON a platform-independent language.

***

* **Is SRON faster than python?**\
  Yes, SRON is way faster than *Python*, *PHP*, *Java* and *JavaScript* because these languages make lot of Heap memory allocations, but SRON reduces it by saving most of the data in static memory which makes data accessing faster and efficient.

***

* **In which language SRON is implemented?**\
  SRON version 2.1 and older are implemented using C++ 11 using GCC compiler and the versions after 2.2 are developed in C++23 using Clang.

***

* **Who developed SRON?**\
  SRON is developed by Saksham Joshi as his bachelor's final year project.

***

* **Is SRON open sourced?**\
  You can view SRON's source code from [here](https://github.com/saksham-joshi/SRON).

***

* **How to download SRON?**\
  You can download SRON from [here](/docs/installation.md).

***

* **Is SRON object-oriented?**\
  No, SRON is not object-oriented.

***

* **Does SRON has a Garbage Collector?**\
  Yes, SRON has a highly optimized garbage collector which manages memory without affecting the execution speed of the code. The garbage collector is implemented in a stack-based architecture.

***
