Unity 3D
Juka can be used in Unity 3D by following these steps:
- Install the JukaCompiler NuGet package.
- Create a multi-line string in the engine (using `) and then run the following:
new JukaCompiler.Compiler().Go(sourceAsString, false);
Example
The following code will print "Hello World" to the console:
string juka = `
"Hello World"
`
var output new JukaCompiler.Compiler().Go(juka,false);