mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Complete transition to fn. Introduce global/threadlocal
This commit is contained in:
committed by
Christoffer Lerno
parent
e2621617f1
commit
b52b42d4da
@@ -1,16 +1,16 @@
|
||||
module foo;
|
||||
import bar;
|
||||
func void run()
|
||||
fn void run()
|
||||
{
|
||||
@bar::test();
|
||||
}
|
||||
|
||||
func void run2()
|
||||
fn void run2()
|
||||
{
|
||||
@bar::test2();
|
||||
}
|
||||
|
||||
func void tester() {}
|
||||
fn void tester() {}
|
||||
|
||||
module bar;
|
||||
macro test()
|
||||
|
||||
Reference in New Issue
Block a user