Javascript
PHP
C++
Python
Print
alert('test');
echo 'test';
#include <iostream>
int main() {
  std::cout << "test";
}
print('test')
Comment
// comment
/* multiline
test */
// comment
/* multiline
test */
// comment
/* multiline
test */
# comment
"""
multiline
test
"""
Variable
var a;
var b = 5;
var c = 10;
//
$b = 5;
$c = 'test';
int a;
int b = 5;
str c = "test";
#
b = 5
c = 'test'
Function
function test() { ... }
function add(a, b) {
  return a + b;
}
function test() { ... }
function add($a, $b) {
  return $a + $b;
}
void test() { ... }
int add(int a, int b) {
  return a + b;
}
def test():
  ...
def add(x, y):
  return x + y
If
if ( a > b ) {
  ...
} elseif ( b == c ) {
  ...
} else {
  ...
}
if ( $a > $b ) {
  ...
} elseif ( b == c ) {
  ...
} else {
  ...
}
if ( a > b ) {
  ...
} elseif ( b == c ) {
  ...
} else {
  ...
}
if b > a:
  ...
elif b == c:
  ...
else:
  ...