docs: update array docs
							parent
							
								
									d16474442a
								
							
						
					
					
						commit
						cd45e9ea48
					
				| 
						 | 
					@ -253,8 +253,7 @@ println(s) // "hello\nworld"
 | 
				
			||||||
import os
 | 
					import os
 | 
				
			||||||
 | 
					
 | 
				
			||||||
fn main() {
 | 
					fn main() {
 | 
				
			||||||
    println('Enter your name:')
 | 
					    name := os.input('Enter your name:')
 | 
				
			||||||
    name := os.get_line()
 | 
					 | 
				
			||||||
    println('Hello, $name!')
 | 
					    println('Hello, $name!')
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
| 
						 | 
					@ -283,8 +282,11 @@ println('Alex' in names) // "false"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
names = [] // The array is now empty
 | 
					names = [] // The array is now empty
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Declare an empty array:
 | 
				
			||||||
 | 
					users := []User{}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// We can also preallocate a certain amount of elements.
 | 
					// We can also preallocate a certain amount of elements.
 | 
				
			||||||
ids := [0].repeat(50) // This creates an array with 50 zeros
 | 
					ids := []int{ len: 50, default: 0 } // This creates an array with 50 zeros
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Array type is determined by the first element: `[1, 2, 3]` is an array of ints (`[]int`).
 | 
					Array type is determined by the first element: `[1, 2, 3]` is an array of ints (`[]int`).
 | 
				
			||||||
| 
						 | 
					@ -330,6 +332,7 @@ println(m['bad_key']) // "0"
 | 
				
			||||||
println('bad_key' in m) // Use `in` to detect whether such key exists
 | 
					println('bad_key' in m) // Use `in` to detect whether such key exists
 | 
				
			||||||
m.delete('two')
 | 
					m.delete('two')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Short syntax
 | 
				
			||||||
numbers := {
 | 
					numbers := {
 | 
				
			||||||
    'one': 1,
 | 
					    'one': 1,
 | 
				
			||||||
    'two': 2
 | 
					    'two': 2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue