mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
18 lines
201 B
C
18 lines
201 B
C
module test;
|
|
import std::io;
|
|
import std::collections::map;
|
|
import std::os;
|
|
|
|
fn void! test2()
|
|
{
|
|
builtin::print_backtrace("hello", 1);
|
|
}
|
|
|
|
fn void test1()
|
|
{
|
|
(void)test2();
|
|
}
|
|
fn void main()
|
|
{
|
|
test1();
|
|
} |