Newer
Older
Tardis / lang / func.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef FUNC_H
#define FUNC_H

#include "object.h"

// Creates a function
struct object *func_create(void);

#endif