aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/fmt/tests/string_quotes_input.vv
blob: c8cedb52ad181181f115b339476709ef5d447241 (plain)
1
2
3
4
5
6
7
8
9
10
fn main() {
	println("Hello world !")
	println('This is correct !')
	println("It's okay")
	println('This is "too"')
	println('I\'m correctly formatted')
	println("\"Everything on the internet is true\" - Albert Einstein, 1965")
	println('I\'m out of idea "_"')
	println("Definitely out \":'(\"")
}