Sha256: b32fa3e896ae6c3dd1ecf451a0309418a08b7b98c5831b71a100800b188a281e
Contents?: true
Size: 462 Bytes
Versions: 24
Compression:
Stored size: 462 Bytes
Contents
/* Copyright (c) 2011 Google Inc. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <stdio.h> int main(int argc, char *argv[]) { #ifdef FOO printf("FOO is defined\n"); #endif printf("VALUE is %d\n", VALUE); #ifdef PAREN_VALUE printf("2*PAREN_VALUE is %d\n", 2*PAREN_VALUE); #endif #ifdef HASH_VALUE printf("HASH_VALUE is %s\n", HASH_VALUE); #endif return 0; }
Version data entries
24 entries across 24 versions & 4 rubygems