15 lines
210 B
C
15 lines
210 B
C
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include "divide.h"
|
|
|
|
struct value* builtin_numeric_divide(
|
|
struct booleans* booleans,
|
|
struct builtin_lambda_value* prev,
|
|
struct value* tail)
|
|
{
|
|
TODO;
|
|
}
|
|
|