- Programming Languages:
- PHP
- Python
If you have any questions or want to get in touch, feel free to email me at: My Email
Or follow me on social media:
php
function helloWorld ($str){
echo $str;
}
helloWorld("echo");
python
def helloWorld (str)
print(str)
helloWorld("print")