Skip to content

Instantly share code, notes, and snippets.

@hamedqaderi
Last active December 20, 2015 23:09
Show Gist options
  • Save hamedqaderi/6210391 to your computer and use it in GitHub Desktop.
Save hamedqaderi/6210391 to your computer and use it in GitHub Desktop.
<?php
$i = 0;
for( $i = 0; $i < 10; $i++ ) {
echo $i;
}
function name($m) {
return m * 2;
}
?>
#include<iostream>
int main()
{
int i = 0;
for( int j = 0; j < 10; j++ ) {
cout<< i + j;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment