mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
14 lines
132 B
Plaintext
14 lines
132 B
Plaintext
module test;
|
|
|
|
macro test($baz, $Type)
|
|
{
|
|
$baz = 123;
|
|
$Type = int;
|
|
}
|
|
fn void main()
|
|
{
|
|
var $foo = 1;
|
|
$foo = 4;
|
|
test(4, double);
|
|
}
|