sample blog
Sample
サンプルです。
リスト
- list1
- list2
- list2-1
- list2-2
- list2-2-1
- list2-2-2
- list2-2-2-1
- list2-2-2-2
- list1
- list2
- list2-1
- list2-2
- list2-2-1
- list2-2-2
- list2-2-2-1
- list2-2-2-2
text
hello world
bash
while read linedoecho $linedone
python
import fileinputfor line in fileinput.input():print line,
Go
main.gopackage mainimport ("fmt")func main() {var line stringfor {c,_:=fmt.Scanln(&line)if c == 0 { break }fmt.Println(line)}}