- [ ] **Array(Object System)** - Declare: `int a[1000]`; - Declare with initialization: `int a[5] <- {1 ~ 5}` or `int a[5] <- {1, 2, 3, 4, 5}` - Substitution: `a[3] = 7` - Substitution with range: `a[0 ~ 3] = 100` - For statement with Array: `for i in a` - **Everything about array hasn't been decided yet.** - [x] **Error Handling System(v0.1.4)** - Print the line number where the error has occurred - [ ] Inline Block - [ ] Add More Comments in Source/Header File Code - [ ] Allow Third-party Library - [ ] Issue Template - [x] Clean Code
Array(Object System)
int a[1000];int a[5] <- {1 ~ 5}orint a[5] <- {1, 2, 3, 4, 5}a[3] = 7a[0 ~ 3] = 100for i in aError Handling System(v0.1.4)
Inline Block
Add More Comments in Source/Header File Code
Allow Third-party Library
Issue Template
Clean Code