En el post pasado vimos cómo instalar Lua. En ésta ocasión veremos cómo entrar a la Shell (Repl).
Abrimos una terminal y tecleamos:
$ lua -i > nil > 23 > 230 > true or false > false and true > true and (72 > 26) > "Esta es una cadena en LUA" > 9^3 > numero = 33 > numero > suma = numero + 66 > type("Str") > type(numero) > booleano = 10 > 0 > type(booleano) > Cad = "ABC" > type(Cad)
- string
- boolean
- number
- nil
- function
- ...
> true and true > false or false > not false > 32 > 22 and 33==33 > 322 % 300 > type("33") > type(200) > type(true) > type(nil)
Para salir teclea Ctrl + c.
En próximos post veremos más ejemplos.
Links:
https://blog.desdelinux.net/lua-5-4-ya-esta-aqui-y-estos-son-sus-cambios-y-novedades/
http://alquimistadecodigo.blogspot.com/2020/08/lenguajes-que-deberias-conocer.html
https://www.muylinux.com/2016/05/23/lua-lenguaje-empezar-programar/
Comentarios
Publicar un comentario