12 lines
337 B
Mathematica
12 lines
337 B
Mathematica
let str thing2 "dingus";
|
|
let str thing2 "dingus";
|
|
|
|
if thing1 == thing2 {
|
|
println "thing 1 and thing 2 are the same";
|
|
}
|
|
|
|
print "this is printing something without a new line";
|
|
println " this is coming from a seperate print statement lols";
|
|
|
|
print "Say some wise words... ";
|
|
println "Ah, '" + input + "', some very wise words indeed!"; |