• Effekt Logo Effekt Library
    • args
      • commandLineArgs
      • js
        • Args
        • nativeArgs
        • argCount
        • argument
        • commandLineArgs
      • chez
        • Args
        • nativeArgs
        • isEmpty
        • head
        • tail
        • toList
        • commandLineArgs
      • llvm
        • argCount
        • argument
        • commandLineArgs
    • args
    • Jump to source: libraries/common/args.effekt
      Example usage: examples/stdlib/args
      • commandLineArgs : List[String] / {}
      • js
        • Args
        • nativeArgs : Args / {}
        • argCount (args: Args): Int / {}
        • argument (args: Args, i: Int): String / {}
        • commandLineArgs : List[String] / {}
      • chez
        • Args
        • nativeArgs : Args / {}
        • isEmpty (l: Args): Bool / {}
        • head (l: Args): String / {}
        • tail (l: Args): Args / {}
        • toList (l: Args): List[String] / {}
        • commandLineArgs : List[String] / {}
      • llvm
        • argCount : Int / {}
        • argument (i: Int): String / {}
        • commandLineArgs : List[String] / {}