Skip to content

Instantly share code, notes, and snippets.

@Kaligule
Created February 26, 2015 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaligule/05137345f368966d900c to your computer and use it in GitHub Desktop.
Save Kaligule/05137345f368966d900c to your computer and use it in GitHub Desktop.
# Überschrift
Teststring
## Zweite Überschrift
Test test
### Dritte Überschrift
Testtesttest
#### Beispiel
Text vor dem Beispiel...
```haskell
main :: IO()
main = do
print "What is your name?"
name <- getLine
print $ "hello" ++ name
```
.. und danach.
@Kaligule
Copy link
Author

Überschrift

Teststring

Zweite Überschrift

Test test

Dritte Überschrift

Testtesttest

Beispiel

Text vor dem Beispiel...

main :: IO()
main = do
    print "What is your name?"
    name <- getLine
    print $ "hello" ++ name

.. und danach.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment