Merge pull request #101 from Servostar/95-implement-bool-module

added bool definition
This commit is contained in:
servostar 2024-05-25 15:02:52 +00:00 committed by GitHub
commit e4f45677a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

7
lib/bool.gem Normal file
View File

@ -0,0 +1,7 @@
import "def.gem"
type unsigned int: bool
static bool: TRUE = 1
static bool: FALSE = 0