comparison test.md @ 1:adf9c2b90279

Enable the gfm extension
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 16 Jun 2020 14:23:23 +0200
parents 4f279dcbfb16
children be229b2e3b19
comparison
equal deleted inserted replaced
0:4f279dcbfb16 1:adf9c2b90279
10 func hello(i int) string { 10 func hello(i int) string {
11 return fmt.Printf("Hello Mr. %d\n", i) 11 return fmt.Printf("Hello Mr. %d\n", i)
12 } 12 }
13 ``` 13 ```
14 14
15 ## Some logic
16
17 We also need a table
18
19 | A | B | A or B | A and B |
20 |---|---|--------|---------|
21 | 0 | 0 | 0 | 0 |
22 | 0 | 1 | 1 | 0 |
23 | 1 | 0 | 1 | 0 |
24 | 1 | 1 | 1 | 1 |
25