definition: |
showGoImports :: [String] -> String showGoImports [] = "\n" showGoImports (x : xs) = "import " ++ (show x) ++ "\n" ++ (showGoImports xs) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Shows a list of imports as a string in Go syntax. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {:} || ({:}) |-> _} |
name: |
showGoImports |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[String] -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |