Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: How do I run MBTI personality test in Linux Mint?

by marto (Cardinal)
on Oct 23, 2016 at 12:01 UTC ( [id://1174549]=note: print w/replies, xml ) Need Help??


in reply to How do I run MBTI personality test in Linux Mint?

As mentioned in the chatterbox, save this to a file, run the file as you would any other perl script. e.g.

d:\pm\perl mb.pl Your type is 'intp'

Again see Tutorials -> Getting Started with Perl, http://learn.perl.org/first_steps/.

Update: since there's still confusion, save the following as mb.pl:

#!/usr/bin/perl use strict; use warnings; use Personality::Type::MBTI; my $mbti = Personality::Type::MBTI->new(); # sample results from a questionnaire my @test = qw/i e i e i n s n s n t f t f t p j p j p/; # calculate type my $type = $mbti->type( @test ); print "Your type is '$type'\n";

Replies are listed 'Best First'.
Re^2: How do I run MBTI personality test in Linux Mint?
by tayacha (Initiate) on Oct 23, 2016 at 16:54 UTC

    Thank you!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1174549]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-24 07:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found