Skip to content

Instantly share code, notes, and snippets.

@paulbarbu
Last active December 16, 2015 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulbarbu/5422984 to your computer and use it in GitHub Desktop.
Save paulbarbu/5422984 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
const int FOO = 24;
int bar = 42;
bar++;
printf("%i %i\n", FOO, bar);
}
<?php
const FOO = 24;
$bar = 42;
$bar++;
echo FOO, ' ', $bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment