You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
Generate mathematical expression with integers and floats, and several operators and braces. For example:
42 + 7 / (13.0)
Generate and run a small Go program to get an expression result or error. For example:
package main
import"fmt"funcmain() {
x:=42+7/ (13.0)
fmt.Println(x)
}
If there is no error, feed the same expression to Gosh and compare results.
For the first step, we may use go-fuzz with some initial corpus. Later we could create a custom code generator just for mathematical expressions. See also: #40.
The text was updated successfully, but these errors were encountered:
For the first step, we may use go-fuzz with some initial corpus. Later we could create a custom code generator just for mathematical expressions. See also: #40.
The text was updated successfully, but these errors were encountered: