Sha256: 1ce722b5aeb30761a69ab56be2ca77bb38dce980a9ce637043262f004343f1a8
Contents?: true
Size: 444 Bytes
Versions: 4
Compression:
Stored size: 444 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(void) { #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
4 entries across 4 versions & 2 rubygems