Last active
November 15, 2017 00:28
-
-
Save christopheranderson/2343a65490f74a177fe519a887517ff6 to your computer and use it in GitHub Desktop.
Why would I do this?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using EdgeJs; | |
class Program | |
{ | |
public static async Task Start() | |
{ | |
var func = Edge.Func(@" | |
return function (data, callback) { | |
callback(null, ''); | |
} | |
"); | |
string str = await func()); | |
} | |
static void Main(string[] args) | |
{ | |
Start().Wait(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment