Sign in
qemu
/
meson
/
bcbf0685492c61fbc9acac3e7b808a5036dd2439
/
.
/
test cases
/
common
/
105 generatorcustom
/
gen-resx.py
blob: 242a962d80fc96390d61adaafff6328dee3a18c9 [
file
] [
log
] [
blame
]
#!/usr/bin/env python3
import
sys
ofile
=
sys
.
argv
[
1
]
num
=
sys
.
argv
[
2
]
with
open
(
ofile
,
'w'
)
as
f
:
f
.
write
(
f
'res{num}\n'
)