Skip to content

Instantly share code, notes, and snippets.

@bhelyer
Created August 21, 2018 07:37
Show Gist options
  • Select an option

  • Save bhelyer/d88d21b6e55da4a6abd70468145e7d7f to your computer and use it in GitHub Desktop.

Select an option

Save bhelyer/d88d21b6e55da4a6abd70468145e7d7f to your computer and use it in GitHub Desktop.
module test;
extern (C) fn getValue() i32 {
x := 2;
x++;
return x;
}
fn main() i32 {
return getValue();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment