curiosity-ai / h5

🚀 The next generation C# to JavaScript compiler
https://github.com/curiosity-ai/h5
Apache License 2.0
211 stars 30 forks source link

please support tupple with default keyword #42

Open chenxustu1 opened 3 years ago

chenxustu1 commented 3 years ago

sample code: class Program { static void Main(string[] args) { (double data1, string data2) t1 = default; console.info(t1.data1); } }