Code Review: Ocaml

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ก.ย. 2024
  • LIVE ON TWITCH: / theprimeagen
    Check out Teej!:
    / @teej_dv
    / teej_dv
    Get in on Discord: / discord
    Get in on Twitter: / theprimeagen
    Got Something For Me to Read or Watch??:
    / theprimeagenreact

ความคิดเห็น • 59

  • @btv9960
    @btv9960 ปีที่แล้ว +63

    A subtle thing that wasn't quite clear is that `in` is continuing the expression in a child scope. Those functions are actually just giant expressions , which themselves have child expressions. Functional code has generally more of a tree structure (as opposed to a linear series of operations) and you mostly don't need the opening/closing delimiters.

    • @sebastianselander161
      @sebastianselander161 ปีที่แล้ว +3

      Indeed! Saying "let statement" is a bit misleading as there are no statements in functional programming languages (Haskell atleast, a bit unsure about OCaml)

    • @kmdsummon
      @kmdsummon 2 หลายเดือนก่อน

      All programs are trees. Imperative languages are just replace “let” with “var” and “in” with “;” so you as a programmer had impression it is not a tree/list.

  • @laughingvampire7555
    @laughingvampire7555 ปีที่แล้ว +13

    one thing you algol-ish people should know about the functional side of the programming spectrum, when SML made its syntax which is the syntax that OCAML took from, they did it as the anti-lisp syntax, lisp was "the researcher's language" and some researchers got fed up with the parenthesis so they made SML the with minimal punctuation. As the legend says Lisp was supposed to have 2 syntaxes, Symbolic-Expressions & Meta-Expressions, but they only implemented Symbolic-Expressions, then people who wanted to get out of the parenthesis decided to "Let's make a language that is the Meta-Expressions that Lisp should've had" and they name it MetaLanguage, or ML for short.

  • @PhatPazzo
    @PhatPazzo ปีที่แล้ว +10

    Not knowing OCaml, but knowing Haskell, I think that what confuses you about “let … in” is the function definition. Things doesn’t necessarily happen in the order it’s written. A function is defined as exactly one expression (such as “function a = a + 5”). This is pretty useless, though, so you can define symbols for that expression as such: “countSpaces text = let all_spaces = filter isSpace text in Text.len all_spaces”. The expression here is “Text.len all_spaces” and the symbol “all_spaces” is valid for the expression after “in”.

  • @kellybmackenzie
    @kellybmackenzie ปีที่แล้ว +21

    I love Haskell and this video makes me wanna learn OCaml so much, it looks so much like Haskell but with its own quirks, I love it!! So pretty!!

    • @BosonCollider
      @BosonCollider ปีที่แล้ว +2

      It's basically Haskell, but without function overloading. You still have the ability to derive "typeclasses" with a ppx, but instead of deriving an instance of show or eq for example it will autogenerate functions like show_foo, show_bar and so on. So you end up just writing very concrete and readable application code as the path of least resistance instead of using abstractions by default, while still being able to write generic code with module functors if you actually need to write a generic library.
      The other nice thing about it is that you can add print statements anywhere and execution order is not UB, unlike Haskell where code is easy to test but fundamentally undebuggable. Laziness is opt-in instead of opt-out
      Of course, the flipside is that the community is smaller than the Haskell one, and not even in the same ballpark as something like Rust or Go. And in some cases you do in fact miss typeclasses, especially for mathy code.

  • @kubre
    @kubre ปีที่แล้ว +45

    I understood every other language, this was just over my fkin head

    • @FusionHyperion
      @FusionHyperion ปีที่แล้ว +10

      I really like the synthax but in the same time I don't understand anything

    • @ardnys35
      @ardnys35 ปีที่แล้ว +1

      that's functional for ya

    • @32gigs96
      @32gigs96 ปีที่แล้ว

      Because every other language is the same fkin language

    • @DMSBrian24
      @DMSBrian24 ปีที่แล้ว +9

      it's not that hard, just some syntax quirks but the concepts are pretty clear i think

    • @cassildaandcarcosa294
      @cassildaandcarcosa294 ปีที่แล้ว

      It way less Cognitive load write code this way.

  • @erik6575
    @erik6575 ปีที่แล้ว +13

    Such a beautiful language !

  • @_manne
    @_manne ปีที่แล้ว +15

    Haskell--

  • @SkinnyGeek_1010
    @SkinnyGeek_1010 ปีที่แล้ว +4

    I wish they would have brought up the ReasonML homepage because the first example there was a case statement with brackets :D I found that it's much easier to transition from C style languages to Reason, learn how the ML system works, and then once comfortable learn OCaml and it's only a small jump to get there.

    • @cassildaandcarcosa294
      @cassildaandcarcosa294 ปีที่แล้ว

      I agree with that, learn semantics in a friendly syntax goes a long way. I went from Ruby to Elixir and the syntax was similar but the semantics are completely different. I picked up Standard ML afterwards which is pretty similar to OCaml. I just had to wrap my head around the type semantics.
      That said, I re

  • @PaulSebastianM
    @PaulSebastianM ปีที่แล้ว +4

    Clojurescript -> TypeScript... TypeScript -> Rescript... OCaml -> Rust... C# -> F#... we need ADTs to be the norm along with pattern matching and maybe we could stick with our programming langs for longer. 😂

  • @mihaiprocopi5207
    @mihaiprocopi5207 ปีที่แล้ว +31

    Pretty good F# code

    • @WillEhrendreich
      @WillEhrendreich ปีที่แล้ว +2

      Hell yeah fsharp. They're likely getting sick of me gushing about it. Lol.

    • @ProjectVastness
      @ProjectVastness ปีที่แล้ว +4

      For me F# is one of the best Functional languages for sure.

  • @VovaY
    @VovaY ปีที่แล้ว +8

    Guys, what plugin is used to display nesting hierarchy at the top of the screen?

    • @ildarakhmetgaleev
      @ildarakhmetgaleev ปีที่แล้ว +12

      nvim-treesitter/nvim-treesitter-context

  • @crides0
    @crides0 ปีที่แล้ว +17

    Given that Prime knows Rust already, I'm surprised he didn't get the Ocaml constructs (I didn't come from Ocaml either)

  • @ProjectVastness
    @ProjectVastness ปีที่แล้ว +5

    OCaml and F# ❤

    • @etooamill9528
      @etooamill9528 4 หลายเดือนก่อน

      I'm wondering which of the two i should start learning, do you suggest more F# or OCaml?

  • @rogergalindo7318
    @rogergalindo7318 ปีที่แล้ว +5

    if they used haskell it would be easier to understand the let bindings ;)
    /s

  • @orderandchaos_at_work
    @orderandchaos_at_work ปีที่แล้ว +47

    OCaml > Rust

    • @32gigs96
      @32gigs96 ปีที่แล้ว +9

      If your dealing with a lot of recursive data structures then it blows it away. If perf is critical then u gotta go rust ofc

    • @PaulSebastianM
      @PaulSebastianM ปีที่แล้ว +5

      use the best tool for you

    • @zahash1045
      @zahash1045 ปีที่แล้ว +6

      #[derive(skill_issue)]

  • @totally_not_a_troll
    @totally_not_a_troll ปีที่แล้ว +3

    Describing OCaml as "Visually clear" is just ... insulting.

  • @davidengelmann1636
    @davidengelmann1636 ปีที่แล้ว +4

    OCaml is the shit

  • @Jabberwockybird
    @Jabberwockybird 3 หลายเดือนก่อน

    Ocaml my caml!

  • @kubre
    @kubre ปีที่แล้ว +20

    Is this haskell but ugly?

    • @soumen_pradhan
      @soumen_pradhan ปีที่แล้ว +4

      OCaml is not lazy also.

    • @netfri25
      @netfri25 ปีที่แล้ว

      Ugly Haskell with optional immutability

    • @replikvltyoutube3727
      @replikvltyoutube3727 ปีที่แล้ว +18

      Haskell but usable

    • @kooraiber
      @kooraiber ปีที่แล้ว

      @TheVimeAgen this guy right here

    • @mskiptr
      @mskiptr ปีที่แล้ว +1

      Looks like it lol

  • @taylorswe
    @taylorswe 6 หลายเดือนก่อน

    Haskell mentioned

  • @charliemalmqvist1152
    @charliemalmqvist1152 3 หลายเดือนก่อน

    the more I look into functional programming, the more I realize it's even worse than oop

  • @sangamo38
    @sangamo38 11 หลายเดือนก่อน

    Ocaml is inspired from plsql devs !??

  • @laughingvampire7555
    @laughingvampire7555 ปีที่แล้ว +2

    Javascript and all these algolish languages copied the "let" wrong. Let has always being a syntactic block, never a statement like in lisp
    (let ((var value)...) _expressions...)
    in the MLs
    let _var = values_ in _expressions_

  • @G3rain1
    @G3rain1 10 หลายเดือนก่อน

    Do you have to be criminally insane to understand code like this? Or am I just stupid.

    • @ea_naseer
      @ea_naseer 7 หลายเดือนก่อน

      I'm late I'm learning Ocaml now and my brain is in this state where I can read the code but would never think to write this.

  • @insertoyouroemail
    @insertoyouroemail ปีที่แล้ว +1

    show and eq are like traits

  • @mskiptr
    @mskiptr ปีที่แล้ว +11

    T.o be honest, I
    R.eally like that
    Y.ou have decided to
    E.xperience at
    L.east a fraction of what -true- FP has to offer.
    M.ay you eventually see the light of lambda and pi!