Golang : Experimental Jawi programming language
Alright, today is Sunday and I got some free time to spare. So, I used my free time to build this simple project of using Jawi as programming language. This project is inspired by the 文言 wenyan-lang(a programming language using ancient Chinese a.k.a Hokkien).
https://github.com/wenyan-lang/wenyan
Since building the lexer, parser, AST, compiler and code generator will take a very long time for me, therefore I cheat a little bit. The Jawi codes will be translated into Golang equivalent codes to be compiled by Golang compiler.
NOTES : This example below will generate enough Golang codes to produce a simple Hello World example. There are more works to be done if I need to cover all the reserved words of Golang and that will need another free Sunday for me....
Here you go!
package main
import (
"fmt"
"strings"
"text/scanner"
)
func main() {
jawiGolang := map[string]string{}
dictionary := `var,ڤايمباولايهوباه
Println,چايتاقڬاراس
const,مالر
package,ڤاکيج
import,امڤاوت
main,اوتام
func,فوڠسي`
lines := strings.Split(dictionary, "\n")
// build the dictionary
for _, line := range lines {
if len(line) > 0 {
split := strings.Split(line, ",")
golang := split[0]
jawi := split[1]
jawiGolang[jawi] = golang
}
}
//test
jawiCode := `ڤاکيج اوتام
امڤاوت (
"fmt"
)
ڤايمباولايهوباه txt = "世界汝好 ! Hello World !"
مالر jawitxt = "هاي دنيا !"
فوڠسي اوتام() {
fmt.چايتاقڬاراس (txt)
fmt.چايتاقڬاراس (jawitxt)
}`
codeReader := strings.NewReader(jawiCode)
var scn scanner.Scanner
scn.Init(codeReader)
scn.Whitespace ^= 1<<'\t' | 1<<'\n' | 1<<'\r' | 1<<' ' // don't skip tabs and new lines
for tok := scn.Scan(); tok != scanner.EOF; tok = scn.Scan() {
switch tok {
case '\n':
fmt.Println()
case '\t':
fmt.Print(" ")
default:
if jawiGolang[scn.TokenText()] != "" {
fmt.Print(jawiGolang[scn.TokenText()])
} else {
fmt.Print(scn.TokenText())
}
}
}
fmt.Println()
}
A friend suggested that I complete the entire project with LLVM. I will try to explore LLVM further and see how it goes. Trouble with Jawi is that it is right to left oriented writing system, maybe just a small problem to overcome. Will see how it goes.
References:
See also : Golang : Experimenting with the Rejang script
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+16.1k Golang : Update database with GORM example
+7.9k Golang : Scan files for certain pattern and rename part of the files
+46.5k Golang : Read tab delimited file with encoding/csv package
+8k Swift : Convert (cast) String to Double
+8.4k Golang : Get final or effective URL with Request.URL example
+9.3k Golang : Handle sub domain with Gin
+9.7k Golang : Changing a RGBA image number of channels with OpenCV
+15.9k Golang : Get checkbox or extract multipart form data value example
+14.3k Golang : syscall.Socket example
+19k Golang : Delete duplicate items from a slice/array
+6.2k Golang : Function as an argument type example