RosettaCodeData/Task/Naming-conventions/BQN/naming-conventions.bqn
2023-07-01 13:44:08 -04:00

10 lines
351 B
BQN
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Subjects (arrays, numbers, characters, etc) start with a lowercase letter:
var3
arr1,2
# Functions start with an uppercase letter:
Fun{𝕨+𝕩}
Avg+´÷
# 1-modifiers start with an underscore and do not end with an underscore:
_mod{𝔽𝕩}
# 2-modifiers must start and end with an underscore:
_mod2_{𝔾𝕨𝔽𝕩}