-
Notifications
You must be signed in to change notification settings - Fork 0
Spaces
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
2 revisions
- Do not use unnecessary spaces (Except for inline comments)
- Do not align the content vertically
✅ Do
values = [1, 2, 3, 4]
name = 'John'
surname = 'Due'
❌ Don't
values = [ 1, 2, 3, 4 ]
name = 'John'
surname = 'Due'
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources