Initial commit

File structure and dummy compiler module.
This commit is contained in:
jorenchik
2024-08-03 18:40:40 +03:00
commit 430fcd26bf
5 changed files with 30 additions and 0 deletions

7
src/compiler/compiler.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello from compiler!")
}