Skip to content

Latest commit

 

History

History
81 lines (73 loc) · 702 Bytes

README.md

File metadata and controls

81 lines (73 loc) · 702 Bytes

seoul

the worst programming language to ever exist!

functions:

function(arg,arg,etc.)

or

function()arg,arg,etc.

(dont ask why its like that)

console.text(arg1)
save(path)
load(path)

variables:

string1 = "test"
string2 = 'test'
boolean1 = true
boolean2 = false
int = 1

extras:

new lines:

\n

eg.

console.text("hi\nbye")

or

string3 = "cool\nawesome!"

boolean comparisons:

==

eg.

console.text(1 == 1)

or

boolean3 = "bruh" == "hi"

if statements:

if(boolean comparison)
code
end

eg.

if("hi" == "hi")
console.text("true!")
end