parent
74ebb1ba59
commit
4e5efd3897
6 changed files with 67 additions and 23 deletions
@ -0,0 +1,4 @@ |
||||
## Allow using generator with CustomTaget or Index of CustomTarget. |
||||
|
||||
Calling `generator.process()` with either a CustomTaget or Index of CustomTarget |
||||
as files is now permitted. |
@ -0,0 +1,9 @@ |
||||
#!/usr/bin/env python3 |
||||
|
||||
import sys |
||||
|
||||
ofile = sys.argv[1] |
||||
num = sys.argv[2] |
||||
|
||||
with open(ofile, 'w') as f: |
||||
f.write('res{}\n'.format(num)) |
@ -1,7 +1,8 @@ |
||||
#include<stdio.h> |
||||
#include <stdio.h> |
||||
|
||||
#include"alltogether.h" |
||||
#include "alltogether.h" |
||||
|
||||
int main(void) { |
||||
printf("%s - %s - %s - %s\n", res1, res2, res3, res4); |
||||
return 0; |
||||
} |
||||
|
Loading…
Reference in new issue