We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f971e commit fb0d9dcCopy full SHA for fb0d9dc
.gitignore
@@ -27,3 +27,16 @@ highlights/node_modules
27
highlights/atom-language-perl6/
28
.DS_store
29
highlights/package-lock.json
30
+
31
+# IDE specific
32
+.scala_dependencies
33
+.classpath
34
+*.iml
35
+.idea/
36
+.idea_modules/
37
+.project
38
+.settings/
39
+*.sublime-project
40
+*.sublime-workspace
41
+/.env
42
+atlassian-ide-plugin.xml
05_hash_tables/scala/02_check_voter.scala
@@ -5,6 +5,7 @@ def check_voter(name: String): Unit = {
5
println("kick them out!")
6
} else{
7
voted += (name -> true)
8
+ println("let them vote!")
9
}
10
11
check_voter("tom")
0 commit comments