Skip to content

Code A chnge here

Function to add two numbers

Add numbers
def add_two_numbers(num1, num2):
    return num1 + num2

Example usage ❤

result = add_two_numbers(5, 3)
print('The sum is:', result)
code-examples.py
1
2
3
4
5
6
7
8
// Function to concatenate two strings
function concatenateStrings(str1, str2) {
  return str1 + str2;
}

// Example usage
const result = concatenateStrings("Hello, ", "World!");
console.log("The concatenated string is:", result);
graph LR
    1[start]-->2
    2-->3
    1--yes-->3