6502-opcodes/firepower-demo/src/main/scala/com/htmlism/firepower/demo/File.scala
2022-12-01 07:07:05 -05:00

10 lines
200 B
Scala

package com.htmlism.firepower.demo
import java.nio.file.Path
case class File(path: Path)
object File:
def apply(first: String, fragments: String*): File =
File(Path.of(first, fragments: _*))