View Single Post
Old 06-05-2014, 10:53 PM   #3
koyal
Registered User
 
Join Date: May 2014
Posts: 308
PHP Function

function say_hello($name) {
$out = "Hello $name";
return $out;
}
Ruby Function

def say_hello(name)
out = "Hello ${name}"
return out
end
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
koyal is offline   Reply With Quote