zeus 4 years ago
parent
commit
14410e2be3
  1. 14
      llo-index.yml
  2. 8
      swarmlab/llo/helloworld.c

14
llo-index.yml

@ -16,11 +16,15 @@
mimetype: "text/x-python"
code:
subdir: ""
lang: "c"
lang: "gcc"
version: "2"
file: "squares.c"
options: ""
file: "helloworld.c"
options: "-Wall"
mimetype: "text/plain"
output: "yes"
file: ""
options: ""
mimetype: "text/img"
challenge:
subdir: ""
question: "q-info.sh"
@ -28,6 +32,10 @@
codeanswer: "codeanswer.sh"
points: "1" # ELO
mimetype: "text/x-python"
output: "yes"
file: ""
options: ""
mimetype: "image"
llospec1:
display_name: "title1"
dir: "net1"

8
swarmlab/llo/helloworld.c

@ -0,0 +1,8 @@
#include <stdio.h>
int
main (void)
{
printf ("Hello, world!\n");
return 0;
}
Loading…
Cancel
Save