includes/std: Moved stdlib to std folder, added all builtin functions

This commit is contained in:
WerWolv
2022-01-30 17:53:48 +01:00
parent 00b7c912f2
commit 6325dbce0d
19 changed files with 190 additions and 19 deletions

7
includes/std/http.pat Normal file
View File

@@ -0,0 +1,7 @@
namespace std::http {
fn get(str url) {
return builtin::std::http::get(url);
};
}