|
|
|
|
|
by maxgraey
2006 days ago
|
|
Not only syntax, but also standard library, ecosystem and etc. You could easily transpile AssemblyScript project to JavaScript via tsc if use portable glue code. From C it I guess it borrows AOT compilation, ability to use low-level intrinsics and more granular and sound types. Btw many people still thought AS has manual memory management, but it's not true. By default it use hybrid ARC and GC approach called PureRC:
https://github.com/dcodeIO/purerc/blob/master/papers/Bacon03... |
|