Sha256: b5ea1746e3169cb994fbf466ea4935b162da815a9ec16fbed6e90c6c59027e01
Contents?: true
Size: 377 Bytes
Versions: 40
Compression:
Stored size: 377 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(int argc, char *argv[]) { printf("Hello from generate_main.py\\n"); return 0; } """ open(sys.argv[1], 'w').write(contents) sys.exit(0)
Version data entries
40 entries across 40 versions & 6 rubygems