Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 359 Bytes

coderule.md

File metadata and controls

20 lines (14 loc) · 359 Bytes

naming convention

  • use Snakecase in variable name
  • use Camelcase in package name
  • use Pascalcase in function name

example

package simpleTest

function ExampleTest() {
    variable_test_one := "test_01";
    variable_test_two := "test_02";

    result := stringEdit.AddTwoString(variable_test_one, variable_test_two);

    return result
}