pipeline-script 0.3.8

Script engine designed for the project construction tool pipeline(crate name pipeline-cli)
Documentation
1
2
3
4
5
6
let  a = ["Hello","World"]

fn test(arr:Array<String>){
    println(arr[0])
}
test(a)