Skip to content

Instantly share code, notes, and snippets.

@elbrujohalcon
Created November 6, 2017 19:13
Show Gist options
  • Select an option

  • Save elbrujohalcon/77f48c54edb664fb62365f7abe01aeba to your computer and use it in GitHub Desktop.

Select an option

Save elbrujohalcon/77f48c54edb664fb62365f7abe01aeba to your computer and use it in GitHub Desktop.
-module(x).
-export([bad/1]).
bad(A) ->
B = case rand:uniform() of
C when C < 0.5 -> C;
D when D >= 0.5 -> 1 - D
end,
A + B - C.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment