mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
12 lines
182 B
Plaintext
12 lines
182 B
Plaintext
import std;
|
|
|
|
macro something() {
|
|
unreachable("Hi there");
|
|
}
|
|
|
|
fn void main() {
|
|
something();
|
|
|
|
$echo "Hello";
|
|
io::printn("Hello, World"); // #warning: This code will never execute
|
|
} |