fixes some TOC errors

This commit is contained in:
waldek 2022-05-02 23:01:31 +02:00
parent b6ce0eaf47
commit 5700c73318
2 changed files with 0 additions and 12 deletions

View File

@ -96,14 +96,10 @@ print("Hello World!")
Just for reference below are a few helloworld programs in different languages. Just for reference below are a few helloworld programs in different languages.
First `c#` then `c` then `c++` and last but not least `javascript`. First `c#` then `c` then `c++` and last but not least `javascript`.
### c#
```c# ```c#
Console.WriteLine("Hello World!"); Console.WriteLine("Hello World!");
``` ```
### c
```c ```c
#include <stdio.h> #include <stdio.h>
@ -113,8 +109,6 @@ int main() {
} }
``` ```
### c++
```cpp ```cpp
// Your First C++ Program // Your First C++ Program
@ -126,8 +120,6 @@ int main() {
} }
``` ```
### javascript
```js ```js
alert( 'Hello, world!' ); alert( 'Hello, world!' );
``` ```

View File

@ -12,10 +12,6 @@ Table of Contents
* [Installing pycharm](./learning_python3.md#installing-pycharm) * [Installing pycharm](./learning_python3.md#installing-pycharm)
* [Virtual environments](./learning_python3.md#virtual-environments) * [Virtual environments](./learning_python3.md#virtual-environments)
* [Your first project](./learning_python3.md#your-first-project) * [Your first project](./learning_python3.md#your-first-project)
* [c#](./learning_python3.md#c)
* [c](./learning_python3.md#c-1)
* [c++](./learning_python3.md#c-2)
* [javascript](./learning_python3.md#javascript)
* [How to execute](./learning_python3.md#how-to-execute) * [How to execute](./learning_python3.md#how-to-execute)
* [Simple printing](./learning_python3.md#simple-printing) * [Simple printing](./learning_python3.md#simple-printing)
* [Try it](./learning_python3.md#-try-it) * [Try it](./learning_python3.md#-try-it)