Skip to content

Instantly share code, notes, and snippets.

@kscottz
Created October 12, 2011 03:06
Show Gist options
  • Save kscottz/1280152 to your computer and use it in GitHub Desktop.
Save kscottz/1280152 to your computer and use it in GitHub Desktop.
# let f = Array.make 10 0;;
val f : int array = [|0; 0; 0; 0; 0; 0; 0; 0; 0; 0|]
# let f = f.(0) <- 5;;
val f : unit = ()
# f;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment