Skip to content

Instantly share code, notes, and snippets.

View halotukozak's full-sized avatar

Bartłomiej Kozak halotukozak

View GitHub Profile
package com.avsystem.commons
package analyzer
import org.scalatest.funsuite.AnyFunSuite
final class ImplicitFunctionParamsTest extends AnyFunSuite with AnalyzerTest {
test("regular parameter with function type should pass") {
assertNoErrors(scala"def goodMethod1(f: Int => String): Unit = ???")
}
@halotukozak
halotukozak / VideoGameDatabase
Last active April 28, 2023 13:57
Project from Hyperskill: I will learn how to use basic SQL commands (DDL, DML, DQL) to build, sort, relate data, and manage and extract information from an SQL database.
CREATE TABLE video_games
(
id INTEGER not null,
name VARCHAR(255) not null,
game_genre TEXT not null,
game_developer VARCHAR(255) not null,
release_date DATE not null,
PRIMARY KEY (id)
);