>DansTonCode();

Tous les codes sources "Mais pourquoi ?"page 32

Java
  6 July, 2014 à 03:29
#228
public void swap(Object a, Object b) {
    Object temp = a;
    a = b;
    b = temp;
}
C++
  6 July, 2014 à 01:02
#144
if !if object_exists(facebook_app) {instance_create(x+0,y+0,facebook_app)} other if object_exists(facebook_app) {with(facebook_app) instance_destroy();}
PHP
  5 July, 2014 à 02:25
#205
// Replaces with spaces the braces in cases where braces in places cause stasis 
$str = str_replace(array("\{","\}")," ",$str);