Skip to content

Instantly share code, notes, and snippets.

@run-dlang
Created January 20, 2022 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save run-dlang/8ef7019485ae3eb52cae010c726ccc0a to your computer and use it in GitHub Desktop.
Save run-dlang/8ef7019485ae3eb52cae010c726ccc0a to your computer and use it in GitHub Desktop.
Code shared from run.dlang.io.
import std;
int* f()
{
int a;
return &a;
}
void main()
{
writeln(f());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment