mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
20 lines
269 B
Plaintext
20 lines
269 B
Plaintext
// #target: linux-x64
|
|
module testme;
|
|
|
|
fn void main(String[] args)
|
|
{
|
|
Configuration config;
|
|
}
|
|
|
|
struct Configuration
|
|
{
|
|
LoadFn loadModuleFn;
|
|
}
|
|
|
|
alias LoadFn = fn Result();
|
|
alias CompleteFn = fn void (Result result);
|
|
|
|
struct Result
|
|
{
|
|
CompleteFn onComplete;
|
|
} |