diff options
author | Aleksander Sadikov <aleksander.sadikov@fri.uni-lj.si> | 2016-08-09 15:17:46 +0200 |
---|---|---|
committer | Aleksander Sadikov <aleksander.sadikov@fri.uni-lj.si> | 2016-08-09 15:17:46 +0200 |
commit | a30f8224b0da43b17d19acba896182418caf979b (patch) | |
tree | bc16446317deee21f9574d21df10829e345c156d /readme.md | |
parent | e4785eb34e27fdc65833baf73066920a8ba8fb0e (diff) | |
parent | 8f634d6b940d5ebd92fa1a951fcf04ed2d2c433b (diff) |
Merge branch 'master' of ssh://192.168.15.97/codeq-problems
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -217,3 +217,40 @@ Problem files razdalja = v ** 2 * sin(2 * kot_rad) / g print("Kroglo bo odneslo", razdalja, "metrov.") ''' + + +Style +===== + +Please observe the following stylistic rules when adding or translating +problems. + + * Wrap lines at 80 columns (not a hard rule). + +Special characters +------------------ + +Use appropriate Unicode characters wherever possible. If your setup makes it +difficult to enter these characters, copy them from this file. + + * "foo" → “foo” (english) or „foo“ (slovene) + * ' → ’ (typographic apostrophe) + * ... → … (ellipsis) + * 2x3 → 2×3 (multiplication sign) + * <= → ≤ + * >= → ≥ + * -> → → + * => → ⇒ + * -- → – (en dash) + * :) → ☺ + * ;) → 😉 + +Some other useful characters: + + * ∪ (set union) + * ∩ (set intersection) + * ∖ (set difference) + * ⊂ + * ⊆ + * ⊃ + * ⊇ |