vlang,v语言

无意中看到.https://vlang.io/,还有网友很积极的来了个中文网 https://www.v-lang.cn/

安装:

    mkdir -p ~/code && cd ~/code  # ~/code directory has to be used (it's a temporary limitation)
    git clone https://github.com/vlang/v
    cd v/compiler
    wget https://vlang.io/v.c # Download the V compiler's source translated to C
    cc -w -o vc v.c           # Build it with Clang or GCC
    ./vc -o v .               # Use the resulting V binary to build V from V source

文档:https://vlang.io/docs

学起来还是满快,类golang.代码够简,只是这个库太少,生态不够.发展尚需时日.

特点据说是:编(译)得快,安全,高性能,编译器小(400kb),0依赖,翻译为C语言,代码热载,强大图形库,通用图形界面库,交叉编译.

当我重新再次编译的时候出现:段错误 (核心已转储).它在用户目录建立了.vlang0.0.12,删除它,依然不行…..

看来必须用code目录,这个有点搞笑了….重编译好后,将v目录移到其它目录,它将出现库不存在等问题(依然在找code目录)

删之,表示稍微关注.


就统计看到的访问数据,还有比较多人(浏览器?)来关注这个v.路漫漫…不过还是多鼓励,少放气.优点还是有的,假以时日或许也会有一定使用者.生态很重要.

这里还有网友的评论:V 语言强势登顶 GitHub TOP1,欲取 Go 而代之 ->https://blog.csdn.net/csdnnews/article/details/93550448