Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Latest commit

 

History

History
49 lines (42 loc) · 959 Bytes

README.md

File metadata and controls

49 lines (42 loc) · 959 Bytes

Digital electronics 2

Text formatting

Italic text

Italic text is created using * characters before and after the text.

*Italic text* is created using \* characters before and after the text.

Bold text

Bold text is created using double ** characters before and after the text.

**Bold text** is created using double \*\* characters before and after the text.

Lists (ordered, unordered)

Ordered

To create ordered list, just write numbers before list items.

  1. Item #1
  2. Item #2
  3. Item #3

Unordered

Unordered list can be created using '-' before list items.

  • Item #1
  • Item #2
  • Item #3

Links

[github.com/ondrejdudasek/digital-electronics-2] This repository [github.com/ondrejdudasek/digital-electronics-2] This repository

Table

Header
A
B

Listing of C source code

void main(void)
{
    while(true);
}
````c
void main(void)
{
    while(true);
}
````