Tag: programación

    Fun with ChatGPT and letters

    Write a letter for a friend asking how he and his family is doing Dear Brandon, I hope this letter finds you and your family well. I have been thinking about you all and wanted to check in to see how everyone is doing. How have you been? How is your spouse and children? I have been keeping busy with work and some hobbies, but I have been missing our get-togethers and catching up.

    Passing argument by value and by reference in Rust

    Most programming languages pass information from function arguments by value or by reference. This means creating a copy of the data or passing a reference to the original data respectively. This is very important depending on the case and the language, as it can have performance consequences or make the code less robust. By value Passing by value makes the code more functional and less prone to errors. Since the function can internally modify the arguments without affecting the variables that contain the original data in the function call environment.