You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
479 B
35 lines
479 B
10 years ago
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
#include "lib/loops.h"
|
||
|
#include "lib/yeolde.h"
|
||
|
|
||
|
void main()
|
||
|
commence
|
||
|
let number a be 0;
|
||
|
whilst (a under 13)
|
||
|
commence
|
||
|
raise (a);
|
||
|
|
||
|
when (a is 5)
|
||
|
then
|
||
|
printf("A is ugly 5\n");
|
||
|
replay;
|
||
|
cease;
|
||
|
|
||
|
choose (a)
|
||
|
commence
|
||
|
option 1:
|
||
|
printf("A is 1\n");
|
||
|
shatter;
|
||
|
option 2:
|
||
|
printf("A is 2\n");
|
||
|
shatter;
|
||
|
option 3:
|
||
|
printf("Neither 1 nor 2\n");
|
||
|
cease;
|
||
|
cease;
|
||
|
cease
|