2016-02-14から1日間の記事一覧

can I use...

Can I use... Support tables for HTML5, CSS3, etcWebRTCの様子なんかを見た

go言語でフィボナッチ数列

タイトルのまんま。 A Tour of GoのExerciseです。 package main import "fmt" // fibonacci is a function that returns // a function that returns an int. func fibonacci() func() int { count := 0 return func() int { count++ return _fibonacci(cou…