From a04714ec0cb917bba40cbeb5ab26c19e01cce176 Mon Sep 17 00:00:00 2001 From: Vadim Grigoruk Date: Thu, 6 Jul 2017 01:56:34 +0300 Subject: [PATCH] Delete methods.md --- methods.md | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 methods.md diff --git a/methods.md b/methods.md deleted file mode 100644 index f9a8be2..0000000 --- a/methods.md +++ /dev/null @@ -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 %}