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

#ifndef NUMBER_H
#define NUMBER_H

#include "object.h"

// Creates a number
struct object *number_create(int value);

// Gets a number's value
int number_value(struct object *);

#endif