Sha256: 2780516a5ecde020a95387085ae41ff45cac4ed550e320834ba714d08ed29a0c
Contents?: true
Size: 359 Bytes
Versions: 4
Compression:
Stored size: 359 Bytes
Contents
#!/usr/bin/env python # Copyright (c) 2009 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. import sys contents = """ #include <stdio.h> int main(void) { printf("Hello from generate_main.py\\n"); return 0; } """ open(sys.argv[1], 'w').write(contents) sys.exit(0)
Version data entries
4 entries across 4 versions & 2 rubygems