# Code Sample
**Source:** https://hi.youtuber.hist.in/blog/code-sample
**Language:** Hindi

---

लेखक
:   - नाम
      :   टेल्स एज़िमुथ

      ट्विटर
      :   @ट्विटर

A sample post with markdown.

## Inline Highlighting

Sample of inline highlighting `sum = parseInt(num1) + parseInt(num2)`

## Code Blocks

Some Javascript code

```
var num1, num2, sum
num1 = prompt('Enter first number')
num2 = prompt('Enter second number')
sum = parseInt(num1) + parseInt(num2) // "+" means "add"
alert('Sum = ' + sum) // "+" means combine into a string
```

Some Python code 🐍

```
def fib():
    a, b = 0, 1
    while सही :            # First iteration:
        yield a            # yield 0 to start with and then
        a, b = b, a + b    # a will now be 1, and b will also be 1, (0 + 1)

for index, fibonacci_number में  zip(range(10), fib()):
     print('{i:3}: {f:3}'.प्रारूप (मैं =index, f=fibonacci_number))
```

ट्विटर पर चर्चा करें  • गिटहब पर देखें