forked from KolibriOS/kolibrios
b29cc6670d
- Non-working trash is cleaned. - Updated from latest git version. - Fixed modules pygame math and others. - Removed old modules added new ones. - All samples work except "net" git-svn-id: svn://kolibrios.org@8535 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
345 B
C
14 lines
345 B
C
/* Copyright (C) 2019-2021 Logaev Maxim (turbocat2001), GPLv3 */
|
|
|
|
#include "tinypy.h"
|
|
|
|
#define GET_NUM_ARG() TP_TYPE(TP_NUMBER).number.val
|
|
#define GET_STR_ARG() TP_TYPE(TP_STRING).string.val
|
|
|
|
static tp_obj _add(TP){
|
|
unsigned num1 = (unsigned)GET_NUM_ARG();
|
|
unsigned num2 = (unsigned)GET_NUM_ARG();
|
|
return tp_number(num1 | num2);
|
|
}
|
|
|