mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
14 lines
129 B
Plaintext
14 lines
129 B
Plaintext
module test;
|
|
import std;
|
|
|
|
struct Foo
|
|
{
|
|
int x, y;
|
|
}
|
|
fn int main()
|
|
{
|
|
Foo f = { 33, 12323 };
|
|
io::printfn("%h", &f);
|
|
return 0;
|
|
}
|