add != >= <= ops and change / to divmod and add int.mcl stdlib entry

This commit is contained in:
MCorange
2023-03-20 16:53:30 +02:00
parent 427f904d0b
commit 3953cd7ad6
5 changed files with 69 additions and 10 deletions

5
include/int.mcl Normal file
View File

@@ -0,0 +1,5 @@
macro NULL 0 end
macro false 0 end
macro true 1 end
macro div divmod drop end
macro mod divmod swap drop end