Hash :
ed7ab11c
Author :
Thomas de Grivel
Date :
2024-03-07T07:59:47
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
"ab" + "cd" + "ef"
"Bonjour " + name + " !"
hello = fn (name) { "Hello, " + name + " !" }
hello("Patrice")
hello("Thomas")
"Hello, " + "Tiyon" + " !"
hello = fn (name) { "Hello, " + name + " !" }
hello("Tiyon")
hello("Patrice")
"Hello, #{name} !"
hello("Tiyon")
hello = fn (name) { "Hello, " + name + " !" }
hello("Tiyon")
hello("Baptiste")
"a"
"abc"
hello = fn (name) { "Hello, #{name} !" }
hello("Thomas")
hello = fn (name) { "Hello, #{name} !" }
name("Thomas")
hello("Thomas")
hello = fn (name) { "Hello, #{name} !" }
hello("Paul")
quote hello("Paul")
hello
quote unquote 1
quote quote unquote 1
quote unquote 1
quote quote unquote 1
dlopen("libc3/window/.libs/libc3_window_debug.so.0.0")
dlopen("libc3/window/sdl2/.libs/libc3_window_sdl2_debug.so.0.0")
dlopen("libc3/window/.libs/libc3_window_debug.so.0.0")
dlopen("libc3/window/.libs/libc3_window.so.0.0")
dlopen("../libc3/window/.libs/libc3_window_debug.so.0.0")
dlopen("../libc3/window/sdl2/.libs/libc3_window_sdl2_debug.so.0.0")
dlopen("../libc3/window/.libs/libc3_window_debug.so.0.0")
dlopen("../libc3/window/sdl2/.libs/libc3_window_sdl2_debug.so.0.0")
%GL.Object{}
type(%GL.Object{})
%GL.Object{}
dlopen("../libc3/window/.libs/libc3_window_debug.so.0.0")
dlopen("../libc3/window/sdl2/.libs/libc3_window_sdl2_debug.so.0.0")
%GL.Object{}
quote %GL.Object{}
quote %GL.Sphere{}
^1
name = "Thomas"
^name
^name = "Thomas"
^1
name = "Plop"
^name
^name = 1
^name = plop
plop
name
^name = ^plop
^name = 1
^name = a
^name = plop
name = "Plop"
^name = plop
name = "Plop"
^name = plop
name = ^plop
^name = plop
(^name) = plop
^name = ^plop
plop = "Plop"
name = "Plop"
^name = ^plop
!1 = plop
! 1 = plop
^ 1 = plop
^ 1 = ^ plop
1 = ^ plop
name = "Plop"
^ name = plop
plop
^ name
name
^ name
name = "Plop"
^ name
^ name = 1
^ name = "abc"
^ name = "Plop"
^ name = plop
plop
n = "Plop"
m = macro (name) { quote "Hello, " + (unquote name) + " !" }
m(n)
n = "Plop"
m = macro (name) { quote "Hello, " + (unquote name) + " !" }
m(n)
if true 1 else 2 end
quote if true 1 else 2 end
quote if false 1 else 2 end
if false 1 else 2 end