Skip to content

Instantly share code, notes, and snippets.

View ahmetsait's full-sized avatar
:octocat:
Git Gud

Ahmet Sait ahmetsait

:octocat:
Git Gud
View GitHub Profile
@UplinkCoder
UplinkCoder / ctfeTest.d
Last active November 1, 2018 16:46
Current Compilable code with the new CTFE engine
struct V3 {
int x;
int y;
int z;
int w = 30;
}
int fn(V3 v3) {
return v3.y;
}
int fn2(V3 v3) {