yus1108 / mcf

This is a toy compiler project named as mcf (making compiler is fun) aiming to make a compiler specialized for game development.
MIT License
1 stars 0 forks source link

[토큰] decimal 타입 추가 #7

Closed yus1108 closed 1 month ago

yus1108 commented 2 months ago

기본 형은 fixed point 타입으로 생각하고 있으며 타입 이름은 "fixed" 로 생각하고 있습니다. fixed a; // 32 비트 형 고정 소수점 타입 (16비트 정수, 16비트 소수) double fixed b; // 64 비트 형 고정 소수점 타입 (32비트 정수, 32비트 소수)

float (부동 소수점) 은 추가 고려 사안 중 하나 이지만 고정 소수점을 먼저 구현 후 추후 구현 고려 예정입니다. 구현 시 예제: float c; // 32 비트 형 부동 소수점 타입 double float d; // 64 비트 형 부동 소수점 타입