mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
170 B
Plaintext
12 lines
170 B
Plaintext
import std;
|
|
|
|
macro @_macro(#i)
|
|
{
|
|
if (#i == 0) { return; }
|
|
return @_macro(--#i); // #error: You cannot assign to a constant expression
|
|
}
|
|
|
|
fn void main()
|
|
{
|
|
@_macro(1);
|
|
} |