日本語ダヨー 改行ダヨー
Roses are red Violets are blue
hoge
| server { | |
| listen 80; | |
| charset UTF-8; | |
| server_name example.net; | |
| root /var/www/net.example/public; | |
| location / { | |
| try_files $uri @app; | |
| } |
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| pkg: grunt.file.readJSON 'package.json' | |
| jade: | |
| compile: | |
| files: [{ | |
| expand: yes | |
| cwd: 'assets/' | |
| src: [ '*.jade' ] |
| <html> | |
| <body onload='init()'> | |
| <button id='b'>BEEEER</button> | |
| <button id='c'>CABBBB</button> | |
| <button id='e'>EGGGGG</button> | |
| <script> | |
| init = function () { | |
| var b = new Audio('./beer.mp3'); | |
| var c = new Audio('./cabbage.mp3'); | |
| var e = new Audio('./egg.mp3'); |
| echo 'Hello World'; |
| http = require 'http' | |
| http.get 'http://google.co.jp', (res) -> | |
| data = '' | |
| res | |
| .on 'data', (chunk) -> | |
| data += chunk | |
| .on 'end', -> | |
| console.log data | |
| .on 'error', (error) -> |