mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
18 lines
209 B
Plaintext
18 lines
209 B
Plaintext
circuit Point {
|
|
x: u32
|
|
y: u32
|
|
}
|
|
|
|
function foo() -> u32 {
|
|
return 1u32;
|
|
}
|
|
|
|
type char5 = [char; 5];
|
|
|
|
const EIGHT = 8u8;
|
|
|
|
import nested.c-d.Fab;
|
|
|
|
function fab_gen() -> Fab {
|
|
return Fab { x: 3 };
|
|
} |