mirror of
https://github.com/mesonbuild/meson.git
synced 2026-08-11 17:44:53 +00:00
8 lines
160 B
Python
Executable File
8 lines
160 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
|
|
if __name__ == '__main__':
|
|
with open('x.c', 'w', encoding='utf-8') as f:
|
|
f.write('int main() { return 0; }\n')
|
|
exit(0)
|