├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── benchmarks ├── Makefile ├── README.md ├── mandelbrot │ ├── mandelbrot.mojo │ ├── mandelbrot.py │ ├── mj.perf │ ├── plot_time.png │ ├── py.perf │ └── results.py ├── matmul │ ├── matmul.mojo │ ├── matmul.py │ ├── mj.perf │ ├── plot_time_gflops.png │ ├── py.perf │ └── results.py └── py_requirements.txt └── examples └── hello.mojo /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/Makefile -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/mandelbrot/mandelbrot.mojo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/mandelbrot/mandelbrot.mojo -------------------------------------------------------------------------------- /benchmarks/mandelbrot/mandelbrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/mandelbrot/mandelbrot.py -------------------------------------------------------------------------------- /benchmarks/mandelbrot/mj.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/mandelbrot/mj.perf -------------------------------------------------------------------------------- /benchmarks/mandelbrot/plot_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/mandelbrot/plot_time.png -------------------------------------------------------------------------------- /benchmarks/mandelbrot/py.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/mandelbrot/py.perf -------------------------------------------------------------------------------- /benchmarks/mandelbrot/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/mandelbrot/results.py -------------------------------------------------------------------------------- /benchmarks/matmul/matmul.mojo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/matmul/matmul.mojo -------------------------------------------------------------------------------- /benchmarks/matmul/matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/matmul/matmul.py -------------------------------------------------------------------------------- /benchmarks/matmul/mj.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/matmul/mj.perf -------------------------------------------------------------------------------- /benchmarks/matmul/plot_time_gflops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/matmul/plot_time_gflops.png -------------------------------------------------------------------------------- /benchmarks/matmul/py.perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/matmul/py.perf -------------------------------------------------------------------------------- /benchmarks/matmul/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfranzon/mojo-is-awesome/HEAD/benchmarks/matmul/results.py -------------------------------------------------------------------------------- /benchmarks/py_requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy -------------------------------------------------------------------------------- /examples/hello.mojo: -------------------------------------------------------------------------------- 1 | fn main(): 2 | print("Hello, world!") --------------------------------------------------------------------------------