formatting

This commit is contained in:
2020-05-04 19:36:23 +02:00
parent d30589c5ad
commit d6f2d44eaf
4 changed files with 12 additions and 10 deletions

View File

@ -2,9 +2,8 @@
## Language Specific
c++ is almost identical to java in this example.
The only difference here is that c++ doesn't require the object
to be initialized with the keyword 'new'.
c++ is almost identical to java in this example. The only difference here is
that c++ doesn't require the object to be initialized with the keyword 'new'.
Relevant Files:

View File

@ -1,7 +1,8 @@
# Classes in C++
In c++ classes are defined using a header file and the implementation in a
regular .cpp file. Explanations to the structure can be found in the files themselves
regular .cpp file. Explanations to the structure can be found in the files
themselves
## Relevant files