diff --git a/README.md b/README.md index f8d9b06..57a8a20 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +Huff Project to perform Fast Fourier Transform for Huffathon 2023. + + # huff-project-template • [![ci](https://github.com/huff-language/huff-project-template/actions/workflows/ci.yaml/badge.svg)](https://github.com/huff-language/huff-project-template/actions/workflows/ci.yaml) ![license](https://img.shields.io/github/license/huff-language/huff-project-template.svg) ![solidity](https://img.shields.io/badge/solidity-^0.8.15-lightgrey) diff --git a/src/Complex.huff b/src/Complex.huff index ff47fdd..d4bb950 100644 --- a/src/Complex.huff +++ b/src/Complex.huff @@ -1,3 +1,4 @@ +#include './Helper.huff' #define function addZ(int256 , int 256 , int256 , int256) returns (int256 ,int256) #define function subZ(int256 , int 256 , int256 , int256) returns (int256 ,int256) diff --git a/src/Helper.huff b/src/Helper.huff new file mode 100644 index 0000000..e69de29