== Coding rules == - variables should not use capital letters. Use underscores to make variables more understandable. - Function names and enums should not use any underscore. Use capital letters to make names more understandable. Example: {{{ #!c Input* vx_input=GetInput(inputs,VxInput); }}}