Update main.d

This commit is contained in:
Ki Rill 2019-12-20 16:05:56 +06:00 committed by GitHub
parent f9fbc01440
commit 16ddeef133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -37,8 +37,8 @@ void main() {
name[0 ... < size_rows][0 ... < size_cols] = ...
*/
string oneName_string; // the same as char[resizeable]
string[10] manyNames_string; // the same as char[10][resizeable]
string oneName_string; // the same as char[]
string[10] manyNames_string; // the same as char[10][]
//------------------------------------