definition: |
createSymlink :: String -> String -> IO Int createSymlink from to = system $ "ln -s " ++ (quote from) ++ " " ++ (quote to) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Creates a new symlink. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
createSymlink |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> String -> Prelude.IO Prelude.Int |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |