Skip to content
Snippets Groups Projects
Commit 9442d5d1 authored by Anna Morpurgo's avatar Anna Morpurgo
Browse files

Update file Lab07.md

parent 1183da48
Branches
No related tags found
No related merge requests found
......@@ -244,7 +244,7 @@ Nota. Le funzioni builtin len, cap e append funzionano anche con slice nil.
sintassi:
```go
nomeSlice := make([]type, length, capacity)
nomeSlice := make([]type, length) //la capacità può non essere specificata
nomeSlice := make([]type, length) //la capacità può non essere specificata, sarà uguale alle lunghezza
nomeSlice := []type{} // tra {} ci può essere una lista di valori
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment