# a const would be equivalent to writing that value as is in runtime, ex: proc a: array[5, int] = [1,2,3,4,5] # in runtime, same as proc b: array[5, int] = const someconst = [1,2,3,4,5] someconst