Max Base

Results 266 comments of Max Base

F# is a mature, open source, cross-platform, functional-first programming language. It empowers users and organizations to tackle complex computing problems with simple, maintainable and robust code. > The mission of...

Mission Statement of Python: > The mission of the Python Software Foundation is to promote, protect, and advance the Python programming language, and to support and facilitate the growth of...

Hey John, I think it is better to write this ourselves. Because translators do not have enough computer skills and may not be able to write. If possible, write this...

Hello again Nikata, you can do this. Try to improve/draft MISSION STATEMENT.

For example this sample. ```c main { names = ['Hamza', 'Max', 'John'] for name in names { println('Hello, $name') } } ```

For example: We not should allow null, and need to keep **null safety** and check all null values at compile step. C does not. Rust does it.

## Data Type The data type must be precisely determinable. ``` i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 string char , etc ``` For example: - i8...

## Function return value Another point: we need ability to return multi values and variables in a single function. (Go has this feature as well) ```c i8, i16, u8 funcName...

## OOP? yes or no? What do you think? I not think too much to deep features of OOP. But I think a minimal features of OOP is good. I...

## GC GC? I think RUST method is good for compiler languages. I not sure so much. Check this for Rust gc: https://stackoverflow.com/questions/32677420/what-does-rust-have-instead-of-a-garbage-collector If you want more technically article about...