jacy icon indicating copy to clipboard operation
jacy copied to clipboard

A minimalist high level language for writing cross-platform native code

Results 1 jacy issues
Sort by recently updated
recently updated
newest added

``` import "system.jc" import System.Console.* struct Matrix4x4 float4 l0 float4 l1 float4 l2 float4 l3 inline test() l0[2]=1.f (function(){ a=Matrix4x4() a.test() Writeln(a) })() ```