Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Δ:src:hello:c

Andrew T. DeSantis edited this page Dec 24, 2016 · 2 revisions

src/hello.c

Schema

type: object
required: [a, b, c]
properties:
  a: {type: number}
  b: {type: number}
  c: {type: number}

Environment

a: 1
b: 2
c: 3

Template

Δ with (data=None)

#include <stdio.h>
#include <stdlib.h>

int
main(int argc, char const *argv[])
{   printf("hello, world!\n");
    return EXIT_SUCCESS;
}

Test

a: 1
b: 2
c: 3
Clone this wiki locally