alert('test');
echo 'test';
#include <iostream> int main() { std::cout << "test"; }
print('test')
// comment /* multiline test */
// comment /* multiline test */
// comment /* multiline test */
# comment """ multiline test """
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 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 ( 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: ...