forked from slope-lang/slope
Updates args-list based variadic procs to allow zero args to be given for args-list, which will now yield and empty list
parent
bdd3430a5a
commit
e1c49b4fb2
@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func Fmt(s string) {
|
||||
var out strings.Builder
|
||||
// exps := Parse(s)
|
||||
|
||||
fmt.Println(out.String())
|
||||
}
|
Loading…
Reference in New Issue