Skip to content

Instantly share code, notes, and snippets.

@kangaroo
Created April 16, 2015 05:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kangaroo/ba08257a2d5061c374d2 to your computer and use it in GitHub Desktop.
Save kangaroo/ba08257a2d5061c374d2 to your computer and use it in GitHub Desktop.
using System;
using OSX.Foundation;
class Driver {
static void Main (string[] args) {
var str = new NSString ("This is an objc string");
Console.WriteLine ("Dump: {0} {1}", str == null, str);
}
}
basalt:OSX.x64.Debug plasma$ ./corerun -c . hw.exe
name: NSString
Dump: False This is an objc string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment