Sha256: f6e0fe0e4e85e97e3d5a49984c9864c7ff3744c7c06390a05591c25222cf915b

Contents?: true

Size: 335 Bytes

Versions: 44

Compression:

Stored size: 335 Bytes

Contents

#!/usr/bin/env python
# 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.

import sys

f = open(sys.argv[1] + ".cc", "w")
f.write("""\
#include <stdio.h>

int main() {
  puts("Hello %s");
  return 0;
}
""" % sys.argv[1])
f.close()

Version data entries

44 entries across 44 versions & 7 rubygems

Version Path
libv8-3.11.8.3 vendor/v8/build/gyp/test/rules/src/rule.py
libv8-3.11.8.1 vendor/v8/build/gyp/test/rules/src/rule.py
libv8-3.11.8.0 vendor/v8/build/gyp/test/rules/src/rule.py
libv8-3.10.8.0 vendor/v8/build/gyp/test/rules/src/rule.py