Skip to content

Instantly share code, notes, and snippets.

View nexssp's full-sized avatar
🎯
Focusing

Nexss Programmer nexssp

🎯
Focusing
View GitHub Profile
// @author Marcin Polak mapoart@gmail.com
// Try to run it also with Nexss Programmer
// https://github.com/nexssp/language_v/blob/master/templates/get_npmjs_downloads_json.v
// 04 May 2021
// V 0.2.2 b3890e2
// my opinion: V is amazing!!
import net.http
import json
@nexssp
nexssp / helloWorld.go
Created July 20, 2020 17:05
Read JSON from STDIN, add go version to the JSON and printout to STDOUT the JSON string - Nexss Programmer HelloWorld.go
package main
import (
"bufio"
"encoding/json"
"fmt"
"os"
"runtime"
)
@nexssp
nexssp / nexssProgrammerHelloWorld.rs
Created July 20, 2020 14:25
Nexss Programmer Hello World Template
//! `cargo` "language".
//!
//! ```cargo
//! [dependencies]
//! serde = "*"
//! serde_derive = "*"
//! serde_json = "*"
//! rustc_version = "*"
//! ```
// Reads JSON data from stdin, adds "HelloFromRust":"version number" to JSON, write to stdout JSON string