mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
18 lines
187 B
C
18 lines
187 B
C
module test;
|
|
import std::io;
|
|
import std::collections::map;
|
|
import std::os;
|
|
|
|
fn void test1()
|
|
{
|
|
builtin::print_backtrace("hello", 1);
|
|
|
|
|
|
int x = 1;
|
|
return;
|
|
}
|
|
|
|
fn void main()
|
|
{
|
|
test1();
|
|
} |