Skip to content

🏡Home#

These are test docs

📵 📵 📵 📵 📵 📵 📵 📵 📵

Note

In Python we use indentation instead of curly braces:

i = 1
while i < 6:
    print(i)
    if i == 3:
        break
    i += 1

If indentation is wrong, the python code will fail to execute

Substance Description
Table1 This is data for table 1
Table2 This is data for table 2
Table3 This is data for table 3
graph TD A[Start] --> B{Look at Admix Docs?}; B -->|Yes| C[OK]; C --> D[Rethink]; D --> B; B ---->|No| E[End];
graph LR B{Water?}; B -->|Drink| D[Juice]; D --> B;
sequenceDiagram autonumber Phone Call Comes in->>Terminal: Send request loop Health Terminal->>Terminal: Check for health end Note right of Terminal: System online Terminal-->>Server: Everything is OK Terminal->>Database: Request customer data Database-->>Terminal: Customer data

Enter Tab Space Up Down Page Up Home Backspace Ins

Alt Right Alt Left Command Right Ctrl Fn Shift Left Shift

| \ | ; ~ _

{ } [ ] " '

! , = < > -

1 F9 Q Num 0 Num 1 Num Lock

Ctrl+Alt+Del

-> This is a Alert Callout !

-> This is a Caution Callout !

-> This is a Bug Callout !

-> This is a Bug Callout !

-> This is a Quote Callout !

add_numbers.py
1
2
3
4
# Hello world
example (Python)
print("Hello World!")
zero_to_ten_double = [2*x for x in range(10)] 

📵