LINUX.ORG.RU

История изменений

Исправление Virtuos86, (текущая версия) :

Эта твоя функция — синтаксически некорректная запись. Я тебе хочу указать на это, раз ты сам не доходишь.

Primitive Type array

A fixed-size array, denoted [T; N], for the element type, T, and the non-negative compile-time constant size, N.

There are two syntactic forms for creating an array:

  • A list with each element, i.e. [x, y, z].
  • A repeat expression [x; N], which produces an array with N copies of x. The type of x must be Copy.

Обрати внимание на прописную N. Это означает, что оно должно быть целым числовым литералом.

Исходная версия Virtuos86, :

Эта твоя функция — синтаксически некорректная запись. Я тебе хочу указать на это, раз ты сам не доходишь.

Primitive Type array

A fixed-size array, denoted [T; N], for the element type, T, and the non-negative compile-time constant size, N.

There are two syntactic forms for creating an array:

  • A list with each element, i.e. [x, y, z].
  • A repeat expression [x; N], which produces an array with N copies of x. The type of x must be Copy.