mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-27 05:34:40 +03:00
8 lines
74 B
Idris
8 lines
74 B
Idris
|
module Test
|
||
|
|
||
|
import Mult
|
||
|
|
||
|
thing : Nat -> Nat
|
||
|
thing x = mult x (plus x x)
|
||
|
|