Flutter Engine
The Flutter Engine
Functions
print_os Namespace Reference

Functions

def main ()
 

Detailed Description

Copyright 2022 Google LLC

Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.

Function Documentation

◆ main()

def print_os.main ( )

Definition at line 14 of file print_os.py.

14def main():
15 print("hello", sys.argv)
16 print(os.name, platform.system(), platform.release())
17 if len(sys.argv) > 1:
18 with open(sys.argv[1], "w") as f:
19 f.write("created")
20
21
def main()
Definition: print_os.py:14
def print(*args, **kwargs)
Definition: run_tests.py:49