TIC-80-guile/methods.md

31 lines
569 B
Markdown
Raw Normal View History

2016-07-04 10:59:50 +02:00
# 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 %}