summaryrefslogtreecommitdiffstats
path: root/Readme.adoc
blob: 8152ee625541ebbc34b95bf92f2b2fae72cda6fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
= Unofficial repository for LP1 tests
Mitsuo
2022-09-09
:source-highlighter: highlight.js

The shortest and most readable code wins!

Contributions are very welcomed and needed, if you want to contribute
please open a Pull Request following the directory structure:

 semester/L#/submitter's name/


== Tips

=== Debugging

Prof. Guanira states it clearly in "Guia de Creacion Ejecucion y
Depuracion.pdf":

image::img/ss_20220916_200135.png[Debugging is essential]

=== Formatting

Using
https://cplusplus.com/reference/library/manipulators/[
stream manipulators] and
https://cplusplus.com/reference/ios/ios_base/fmtflags/[
stream format flags] can be cumbersome, but the course _requires_ them since
using `printf` is not allowed. So maybe macros can be helpful here.

See link:tips/formatting.adoc[] for an example implementation and usage.