Created
November 11, 2019 17:10
-
-
Save gordinmitya/26f0b803ab939386c0487a8436128257 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ru.gordinmitya; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.util.*; | |
public class Main { | |
public static void main(String[] args) throws FileNotFoundException { | |
Scanner scanner = new Scanner(new File("asd.txt")); | |
scanner.close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment