radianceRadiance self-hosting compiler home log refs
kernel
  • master
  • agent/cell-permissions
  • cloudhead/master-next
  • agent/master-fixes
  • agent/opaque-records
  • agent/safe-ast
  • agent/lexical-regions-kernel-t2
  • agent/kernel-t2
  • kernel
  • cloudhead/memory-safety
  • cloudhead/generic-core-types
  • radiance-generics
  • ai/ril-safety
6e822795 kernel: admit and compile trusted RIL at runtime Alexis Sellier 13 days ago
Clone
compiler/ kernel/ lib/ examples/ std/ arch/ char/ collections/ lang/ sys/ arch.rad 68 B char.rad 855 B collections.rad 39 B fmt.rad 8.1 KiB intrinsics.rad 467 B io.rad 1.3 KiB lang.rad 276 B mem.rad 2.2 KiB sys.rad 179 B testing.rad 2.4 KiB tests.rad 15.2 KiB vec.rad 3.2 KiB std.rad 281 B scripts/ seed/ sublime/ test/ vim/ .gitignore 351 B .gitsigners 112 B CONTRIBUTING 2.1 KiB LICENSE 1.1 KiB Makefile 3.8 KiB README 2.5 KiB STYLE 2.5 KiB std.lib 1.4 KiB std.lib.test 380 B
lib/std/sys.rad 179 B raw
1
//! System utilities.
2
export mod unix;
3
4
/// Process environment passed to the program entry point.
5
export record Env: Copy {
6
    /// Command-line arguments.
7
    args: *[*[u8]],
8
}