Skip to content

Instantly share code, notes, and snippets.

@dcrystalj
Created November 16, 2013 23:29
Show Gist options
  • Save dcrystalj/7506785 to your computer and use it in GitHub Desktop.
Save dcrystalj/7506785 to your computer and use it in GitHub Desktop.
polimorfna
fun zdruzi (sez1, sez2) =
case sez1 of
[] => sez2
| glava::rep => glava::zdruzi(rep, sez2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment