https://github.com/jrincayc/ucblogo-code
Revision c1b1f7f5fdfceafe4b0f05d678a6f01dc6fc0481 authored by Joshua Cogliati on 08 March 2021, 03:25:21 UTC, committed by GitHub on 08 March 2021, 03:25:21 UTC
ISSUE-95: Remove special case for short waits to prevent system locking
2 parent s c01254e + 0f418e6
Raw File
Tip revision: c1b1f7f5fdfceafe4b0f05d678a6f01dc6fc0481 authored by Joshua Cogliati on 08 March 2021, 03:25:21 UTC
Merge pull request #98 from dmalec/ISSUE-95
Tip revision: c1b1f7f
eval.h
#ifndef EVAL_H
#define EVAL_H

#include "logo.h"
extern NODE *evaluator(NODE *list, enum labels where);

#endif
back to top