Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
repl.h
Go to the documentation of this file.
1/*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7/*
8 * File: repl.h
9 * Author: simon
10 *
11 * Created on 14 August 2017, 14:40
12 */
13
14#ifndef REPL_H
15#define REPL_H
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21/**
22 * The read/eval/print loop
23 */
24 void repl( );
25
26#ifdef __cplusplus
27}
28#endif
29#endif /* REPL_H */
void repl()
The read/eval/print loop.
Definition repl.c:33