Coding Convention
Every programming language has a different convention (or style) and guidelines to write code These conventions cover various aspects of code formatting, naming conventions, indentation, commenting practices, and more. They aim to ensure consistency and readability across codebases, making it easier for developers to understand and maintain the code.
In SRON, the coding convention typically includes the following guidelines:
{
name : Main
args : (List __arglist)
Int x, List lst = []
println(__arglist, x, lst)
}Last updated