11 lines
179 B
Forth
11 lines
179 B
Forth
|
|
open System
|
||
|
|
|
||
|
|
[<EntryPoint>]
|
||
|
|
let main args =
|
||
|
|
let s = "hello"
|
||
|
|
Console.Write(s)
|
||
|
|
Console.WriteLine(" literal")
|
||
|
|
let s2 = s + " literal"
|
||
|
|
Console.WriteLine(s2)
|
||
|
|
0
|