mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 00:31:57 +03:00
10 lines
177 B
Idris
10 lines
177 B
Idris
||| Tests that no duplication occurs in recursive calls
|
|
||| as fixed in #1494
|
|
import Data.List
|
|
|
|
ints : List Int
|
|
ints = [1..100]
|
|
|
|
main : IO ()
|
|
main = printLn $ span (80 >=) ints
|