removed the forgetten english line

This commit is contained in:
ali oygur
2015-04-09 15:33:43 +03:00
parent 50ad42bd92
commit 6b03333449

View File

@@ -25,8 +25,6 @@ Birden fazla değişken tanımlama.
//tipi "type" olan ve öntanımlı değerleri sahip üç değişken tanımlayalım.
var vname1, vname2, vname3 type = v1, v2, v3
Do you think that it's too tedious to define variables use the way above? Don't worry, because the Go team has also found this to be a problem. Therefore if you want to define variables with initial values, we can just omit the variable type, so the code will look like this instead:
Yukarıdaki gibi değişken tanımlamak sıkıcı mı geldi? Üzülmeyin, Go ekibide bunu bir problem olarak görüyor. Bu yüzden dolayı değişken tanımlarken değişken tipini ihmal edebiliyoruz. Yani kısaca kod aşağıdaki gibi bir hal alıyor: