blob: fbfa431ae76f20ef9dde9307301a3a4f21d9c07b [file] [log] [blame]
# Copyright 2024 The Cobalt Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Script for checking if we're running Python 2 or 3."""
from __future__ import print_function
import sys
print("true" if sys.version_info.major == 2 else "false")