array(enumerable)
array(type, collection)
array(type, enumerable)
array(type, size)
enumerate(enumerable) // Returns index and the object itself
gets
gets()
iterator(enumerable) as IEnumerable // Usually not necessary
join(enumerable)
join(enumerable, seperator as Char)
map(enumerable, function)
matrix(elementType, length as (int))
print
print(object)
prompt
prompt(query as string)
range(max as int)
range(begin as int, end as int)
range(begin as int, end as int, step as int)
reversed(enumerable)
shell(filename, arguments as string)
shellm(filename, arguments as (string) )
shellp(filename, arguments as string)
zip(first as IEnumerable, second as IEnumerable)
|