This website requires JavaScript.
Explore
Help
Register
Sign In
silva
/
v_scratch
mirror of
https://github.com/viniciusfdasilva/v_scratch.git
Watch
1
Star
0
Fork
You've already forked v_scratch
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
daf26d4e9c
v_scratch
/
11_structs
/
heap_structs.v
11 lines
83 B
V
Raw
Blame
History
struct
Point
{
x
int
y
int
}
pub
fn
main
(
)
{
p
:=
&
Point
{
10
,
10
}
println
(
p
.
x
)
}
Reference in New Issue
View Git Blame
Copy Permalink