スライスは[]<型>
で定義する. 要素の追加はappend
var tasks []string
append(tasks, "todo1")
スライス同士の結合(concat)もappendだが, 第二引数に...
を付けるのが妙な感じ.
var tasks_without_due []string
append(tasks, tasks_without_due...)
Go to list of users who liked
More than 5 years have passed since last update.
スライスは[]<型>
で定義する. 要素の追加はappend
var tasks []string
append(tasks, "todo1")
スライス同士の結合(concat)もappendだが, 第二引数に...
を付けるのが妙な感じ.
var tasks_without_due []string
append(tasks, tasks_without_due...)
Register as a new user and use Qiita more conveniently
Go to list of users who liked