mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
8 lines
96 B
Nim
8 lines
96 B
Nim
discard """
|
|
output: '''c'''
|
|
"""
|
|
|
|
var a: array['a'..'c', string] = ["a", "b", "c"]
|
|
|
|
echo a[^1]
|