From bd3ebcd3e5ef61947c9ebe38804db90a98303815 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Wed, 22 Dec 2021 12:49:50 -0800 Subject: [PATCH] Some formatting changes --- langs/v.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/langs/v.yaml b/langs/v.yaml index 7b7b22f..6a9ff01 100644 --- a/langs/v.yaml +++ b/langs/v.yaml @@ -5,7 +5,7 @@ name: "V" info: year: 2019 - desc: "V is a simple, statically-typed compiled programming language designed for building maintainable software" + desc: "Simple, statically-typed compiled programming language designed for building maintainable software" ext: - v web: @@ -27,8 +27,10 @@ install: manual: | git clone https://github.com/vlang/v.git pushd v + make - cp v ${pkg}/usr/local/bin + cp v "${pkg}/usr/local/bin/" + popd main: "main.v" @@ -44,7 +46,7 @@ format: run: | v fmt main.v input: | - fn main() + fn main() { println("Hello, world!") }