Delete methods.md

This commit is contained in:
Vadim Grigoruk 2017-07-06 01:56:34 +03:00 committed by GitHub
parent c11078f924
commit a04714ec0c
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
# Defining Methods
Methods allow you to smoothly display code examples in different languages.
{% method %}
## My first method
My first method exposes how to print a message in JavaScript and Go.
{% sample lang="js" %}
Here is how to print a message to `stdout` using JavaScript.
```js
console.log('My first method');
```
{% sample lang="go" %}
Here is how to print a message to `stdout` using Go.
```go
fmt.Println("My first method")
```
{% common %}
Whatever language you are using, the result will be the same.
```bash
$ My first method
```
{% endmethod %}