2015-03-07 17:26:19 +01:00
|
|
|
/*
|
|
|
|
* Monicelli: an esoteric language compiler
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Stefano Sanfilippo
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-03-08 12:19:06 +01:00
|
|
|
#include "Runtime.hpp"
|
2015-03-07 14:12:18 +01:00
|
|
|
|
2015-03-08 12:19:06 +01:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cassert>
|
2015-03-07 14:12:18 +01:00
|
|
|
|
|
|
|
|
|
|
|
void __Monicelli_putBool(__Monicelli_Bool value) {
|
2015-03-07 19:44:34 +01:00
|
|
|
puts(value? "vero\n": "falso\n");
|
2015-03-07 14:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __Monicelli_putChar(__Monicelli_Char value) {
|
|
|
|
printf("%c", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __Monicelli_putInt(__Monicelli_Int value) {
|
2015-03-07 19:44:34 +01:00
|
|
|
printf("%ld\n", value);
|
2015-03-07 14:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __Monicelli_putFloat(__Monicelli_Float value) {
|
2015-03-08 12:34:51 +01:00
|
|
|
printf("%g\n", value);
|
2015-03-07 14:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void __Monicelli_putDouble(__Monicelli_Double value) {
|
2015-03-08 12:34:51 +01:00
|
|
|
printf("%lg\n", value);
|
2015-03-07 14:12:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
__Monicelli_Bool __Monicelli_getBool() {
|
|
|
|
__Monicelli_Bool tmp;
|
|
|
|
printf("%s", "? ");
|
|
|
|
scanf("%c", &tmp);
|
|
|
|
return tmp != 0? 1: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
__Monicelli_Char __Monicelli_getChar() {
|
|
|
|
__Monicelli_Char tmp;
|
|
|
|
printf("%s", "? ");
|
|
|
|
scanf("%c", &tmp);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
__Monicelli_Int __Monicelli_getInt() {
|
|
|
|
__Monicelli_Int tmp;
|
|
|
|
printf("%s", "? ");
|
|
|
|
scanf("%ld", &tmp);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
__Monicelli_Float __Monicelli_getFloat() {
|
|
|
|
__Monicelli_Float tmp;
|
|
|
|
printf("%s", "? ");
|
|
|
|
scanf("%f", &tmp);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
__Monicelli_Double __Monicelli_getDouble() {
|
|
|
|
__Monicelli_Double tmp;
|
|
|
|
printf("%s", "? ");
|
|
|
|
scanf("%lf", &tmp);
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __Monicelli_abort() {
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void __Monicelli_assert(__Monicelli_Bool condition) {
|
|
|
|
assert(condition);
|
|
|
|
}
|
|
|
|
|