Skip to content

k-mrm/maxc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

maxc

Build Status

maxc is a scripting language implemented in C.

  • static typing
  • comfortable coding

Sample Code

Please see /test directory.

hello.mxc

println("Hello, World!");
Hello, World!

for.mxc

for s in ["morning", "evening", "night"] {
  println "Good ", s;
}
Good morning
Good evening
Good night

fibo.mxc

def fibo(n: int): int {
    if n <= 1 {
        return n;
    }

    return fibo(n - 2) + fibo(n - 1);
}

30.fibo().println();
30.fibo.println;
832040
832040

repl

$ ./maxc
Welcome to maxc repl mode!
maxc Version 0.0.1
use exit(int) or Ctrl-D to exit
>> let a = 10
>> a
10 : int
>> use math@sqrt
>> let n = 2.0
>> n.sqrt
1.41421356 : float
>> [10; 0]
[0,0,0,0,0,0,0,0,0,0] : [int]
>> 

How To Build

on Linux

  1. Install gcc and make

  2. get maxc from github

$ git clone https://github.com/k-mrm/maxc.git
$ cd maxc
  1. Build
$ make
$ ./maxc                    # run repl
$ ./maxc example/hello.mxc  # run from source file

Document(Japanese)

https://admarimoin.hatenablog.com/entry/2019/08/28/155346

Releases

No releases published

Packages

No packages published

Languages