CompilerService JSON service

Introduction

This URL exposes a web service as JSON service. To use this service, first include the following script in HTML:

<script src="https://orc.csres.utexas.edu/orchard/json/compiler?js"/></script>

Then you can make asynchronous calls to the exposed operations like this:

svc.method( {...request parameters...}, function(returnValue) { ... } );

Operations

Method name Input type Output type
compile Compile STRING

Compile type

Compile = { devKey : STRING, program : STRING };

Operations

Types