26 lines
325 B
YAML
26 lines
325 B
YAML
|
|
---
|
||
|
|
name: python import
|
||
|
|
desc:
|
||
|
|
idl: |
|
||
|
|
@include("sys")
|
||
|
|
program test
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
bar(in string x) -> void
|
||
|
|
}
|
||
|
|
lang: py
|
||
|
|
test/common.py:
|
||
|
|
- import sys
|
||
|
|
---
|
||
|
|
name: C include
|
||
|
|
desc:
|
||
|
|
idl: |
|
||
|
|
@include("stdio.h")
|
||
|
|
program test;
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
bar(in string x) -> void
|
||
|
|
}
|
||
|
|
test_common.h:
|
||
|
|
- '#include "stdio.h"'
|