World’s biggest Monster Hunter fan

  • 0 Posts
  • 1 Comment
Joined 2 years ago
cake
Cake day: June 15th, 2023

help-circle
  • When programming, data is stored in variables. In a weakly typed language you define a variable and you can put anything in it. Numbers, text, whatever. In a strongly typed language when you define a variable you also have to define what it can take. If you define a variable that can hold numbers, it can only hold numbers and never text or anything else.

    Weak typing makes code easier to write and more flexible while strong typing makes code more secure and harder to accidentally break. It’s mostly a preference thing in the end.