فهرست منبع

Update builtins.h

blueloveTH 3 سال پیش
والد
کامیت
2192941bc8
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      src/builtins.h

+ 6 - 0
src/builtins.h

@@ -146,6 +146,12 @@ class dict:
             a.append(k.__json__()+': '+v.__json__())
         return '{'+ ', '.join(a) + '}'
 
+def round(x):
+    if x >= 0:
+        return int(x + 0.5)
+    else:
+        return int(x - 0.5)
+
 def max(a, b):
     if a > b:
         return a