Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
print_os Namespace Reference

Functions

 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()

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
void print(void *str)
Definition bridge.cpp:126
Definition main.py:1