https://github.com/Helium4Haskell/lvm
Raw File
Tip revision: 26857cef4ea09c7a96311c898ac6859b66f29d39 authored by Lars on 05 December 2018, 11:11:42 UTC
Added qualified typing to LVM
Tip revision: 26857ce
test0.core
module Test0 where

instruction primDiv "divint" :: Int! -> Int! -> Int!

-- test direct call in argument position
main    = (\x -> x) (primDiv 42 2)
back to top