• 6 Posts
  • 6 Comments
Joined 11 months ago
cake
Cake day: October 2nd, 2023

help-circle

  • sym_num@alien.topOPBtoLispType Inference in Lisp
    link
    fedilink
    English
    arrow-up
    1
    ·
    9 months ago

    It seems that the intention behind the post wasn’t communicated effectively. Let me provide some additional explanation. I’ve been interested in type inference for some time now.

    Lisp is a dynamically typed language, allowing for a more casual approach to programming. However, there’s a possibility of bugs remaining undetected until the testing phase.

    Static typed languages perform type checking, preventing errors due to code that hasn’t been executed. However, they can feel restrictive.

    I’m exploring the possibility of incorporating both of these qualities within Lisp. It appears that there hasn’t been much progress in terms of type inference within Lisp. Originally, Lisp wasn’t designed with type inference in mind.

    Utilizing type inference requires some ingenuity. I posted seeking opinions from those interested in type inference to gather insights and opportunities to further develop my thoughts.