Kray-G / kinx

Looks like JavaScript, feels like Ruby, and it is a script language fitting in C programmers.
MIT License
240 stars 7 forks source link

Support `#line` directive like C. #325

Closed Kray-G closed 3 years ago

Kray-G commented 3 years ago

This feature will be very useful for a source code generator.

Kray-G commented 3 years ago

Like this.

#line 20 "other.kx"
System.println([__FILE__, __LINE__]); // => ["other.kx", 20]