Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 05:12, 10 September 2025 Iwiseman talk contribs created page Scala Naming Standards (Created page with "= Scala Naming Standards = This page defines naming conventions for Scala codebases, supporting consistency, readability, and onboarding clarity. Inspired by the TypeScript standards used in Bibble projects. == Variables == Use '''camelCase''' for local and mutable variables. '''Example''': <code>var userName = "John"</code> == Values == Use '''camelCase''' for immutable values. '''Example''': <code>val maxRetries = 3</code> == Functions == Use '''camelCase''' for...")