Compare commits

...

2 Commits

Author SHA1 Message Date
Piyush Ranjan
5ecb52948e
Merge eeb513929b into 0b375fe86c 2024-11-23 12:46:29 -07:00
Piyush Ranjan
eeb513929b
Correct OCaml record field assignment syntax
Fixed an error in the OCaml article where record field assignments incorrectly used `:` instead of `=`.
Updated example:
```ocaml
let cow = { name = "cow"; color = "brown"; legs = 4 };;
2024-11-23 14:39:44 +05:30

View File

@ -341,9 +341,9 @@ type animal =
;; ;;
let cow = let cow =
{ name: "cow"; { name = "cow";
color: "black and white"; color = "black and white";
legs: 4; legs = 4;
} }
;; ;;
val cow : animal val cow : animal
@ -488,7 +488,7 @@ filter (fun x -> x < 4) [3; 1; 4; 1; 5] ;; (* Gives [3; 1; 1]) *)
(* However, you can create mutable polymorphic fields *) (* However, you can create mutable polymorphic fields *)
type counter = { mutable num : int } ;; type counter = { mutable num : int } ;;
let c = { num: 0 } ;; let c = { num = 0 } ;;
c.num ;; (* Gives 0 *) c.num ;; (* Gives 0 *)
c.num <- 1 ;; (* <- operator can set mutable record fields *) c.num <- 1 ;; (* <- operator can set mutable record fields *)
c.num ;; (* Gives 1 *) c.num ;; (* Gives 1 *)