More buildins and vscode exstention <CO-AUthored, ai>

This commit is contained in:
allexanderbergmns
2026-08-25 16:20:11 +02:00
parent 5daadce7a9
commit 7ed774089e
27 changed files with 2080 additions and 122 deletions
+13
View File
@@ -0,0 +1,13 @@
// csv.vr — comma-separated values parsing (part of the VuurRaaf stdlib).
//
// import csv
// let rows = csv.parse("name,age\namy,30\nbob,41")
// // rows == [["name", "age"], ["amy", "30"], ["bob", "41"]]
// println(rows[1][0]) // amy
//
// parse returns an array of rows; each row is an array of cell strings.
// Quoted fields, embedded commas and newlines are handled.
fn parse(s) {
return csv_parse(s)
}