3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

vlang vscript のメモ

Posted at

vlang には, bash のような感じでシェルスクリプトっぽい機能があり, クロスプラットホームで使うのによさそうに見えます
(python とかでもできるあるが, python は環境インストールとか必要でめんどい)

ただ, 仕様はころころ変わっていて, web サイト通りには動きません.

以下は

V 0.1.28 bdecbc1 (2020/06/25)

を想定しています.

lsos.ls になり, optional 文を使っています.

したがって以下のように記述します.

import os

files := os.ls('build') or {
  return
}

for f in files {
  println(f)
}

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?