WOF Tech Blog

sample blog

Sample

サンプルです。

リスト

  • list1
  • list2
    • list2-1
    • list2-2
      • list2-2-1
      • list2-2-2
        • list2-2-2-1
        • list2-2-2-2
  1. list1
  2. list2
    1. list2-1
    2. list2-2
      1. list2-2-1
      2. list2-2-2
        1. list2-2-2-1
        2. list2-2-2-2

text

hello world

bash

while read line
do
echo $line
done

python

import fileinput
for line in fileinput.input():
print line,

Go

main.go
package main
import (
"fmt"
)
func main() {
var line string
for {
c,_:=fmt.Scanln(&line)
if c == 0 { break }
fmt.Println(line)
}
}