schala/source_files/schala/first_program.schala

18 lines
131 B
Plaintext
Raw Normal View History

fn main() {
2018-08-20 19:03:55 -07:00
let a = 10
let b = 20
a + b
}
2018-08-20 19:03:55 -07:00
//this is a one-line comment
/* this is
a multiline
comment
*/
print(main())
2018-03-07 22:07:13 -08:00