Files
Nim/tests/openarray/t6163.nim
genotrance 7af659cf59 Test case for #6163 (#8960)
* Test case for #6163
2018-09-14 17:09:16 +02:00

17 lines
291 B
Nim

discard """
exitcode: 0
targets: "c cpp js"
output: '''19316
'''
"""
from future import `->`, `=>`
from math import `^`, sum
from sequtils import filter, map, toSeq
proc f: int =
toSeq(10..<10_000).filter(a => a == ($a).map(d => (d.ord-'0'.ord).int^4).sum).sum
var a = f()
echo a