Remix.run Logo
subjectsigma 3 hours ago

Re: the comma-at-end-of-line thing: I would sometimes write Prolog like so to avoid that issue:

    goal :-
        true
        , subgoal(A, B)
        , subgoal(B, C)
        .        
This is definitely not standard and I don't know if the WAM optimizes out the gratuitous choice point, but it certainly makes the code easier to work with.
cyberpunk 2 hours ago | parent [-]

I actually like , ; . in erlang. Maybe I’m an alien.

Joel_Mckay 2 hours ago | parent [-]

"Depends how you felt about Elixir" |> String.graphemes() |> Enum.frequencies()

Best regards =3